mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-04 03:36:22 +08:00
修复 webkit 下播放器控件的展示 bug
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
## [100.0.3] - 2025-10-27
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- 修复 webkit 下播放器控件的展示 bug
|
||||||
|
|
||||||
## [100.0.2] - 2025-10-23
|
## [100.0.2] - 2025-10-23
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
100.0.2
|
100.0.3
|
||||||
@@ -892,7 +892,8 @@ function LivePageClient() {
|
|||||||
const targetUrl = `/api/proxy/m3u8?url=${encodeURIComponent(videoUrl)}&moontv-source=${currentSourceRef.current?.key || ''}`;
|
const targetUrl = `/api/proxy/m3u8?url=${encodeURIComponent(videoUrl)}&moontv-source=${currentSourceRef.current?.key || ''}`;
|
||||||
try {
|
try {
|
||||||
// 创建新的播放器实例
|
// 创建新的播放器实例
|
||||||
Artplayer.USE_RAF = true;
|
Artplayer.USE_RAF = false;
|
||||||
|
Artplayer.FULLSCREEN_WEB_IN_BODY = true;
|
||||||
|
|
||||||
artPlayerRef.current = new Artplayer({
|
artPlayerRef.current = new Artplayer({
|
||||||
container: artRef.current,
|
container: artRef.current,
|
||||||
|
|||||||
@@ -1284,7 +1284,8 @@ function PlayPageClient() {
|
|||||||
try {
|
try {
|
||||||
// 创建新的播放器实例
|
// 创建新的播放器实例
|
||||||
Artplayer.PLAYBACK_RATE = [0.5, 0.75, 1, 1.25, 1.5, 2, 3];
|
Artplayer.PLAYBACK_RATE = [0.5, 0.75, 1, 1.25, 1.5, 2, 3];
|
||||||
Artplayer.USE_RAF = true;
|
Artplayer.USE_RAF = false;
|
||||||
|
Artplayer.FULLSCREEN_WEB_IN_BODY = true;
|
||||||
|
|
||||||
artPlayerRef.current = new Artplayer({
|
artPlayerRef.current = new Artplayer({
|
||||||
container: artRef.current,
|
container: artRef.current,
|
||||||
|
|||||||
@@ -10,6 +10,19 @@ export interface ChangelogEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const changelog: ChangelogEntry[] = [
|
export const changelog: ChangelogEntry[] = [
|
||||||
|
{
|
||||||
|
version: "100.0.3",
|
||||||
|
date: "2025-10-27",
|
||||||
|
added: [
|
||||||
|
// 无新增内容
|
||||||
|
],
|
||||||
|
changed: [
|
||||||
|
// 无变更内容
|
||||||
|
],
|
||||||
|
fixed: [
|
||||||
|
"修复 webkit 下播放器控件的展示 bug"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "100.0.2",
|
version: "100.0.2",
|
||||||
date: "2025-10-23",
|
date: "2025-10-23",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable no-console */
|
/* eslint-disable no-console */
|
||||||
|
|
||||||
const CURRENT_VERSION = '100.0.2';
|
const CURRENT_VERSION = '100.0.3';
|
||||||
|
|
||||||
// 导出当前版本号供其他地方使用
|
// 导出当前版本号供其他地方使用
|
||||||
export { CURRENT_VERSION };
|
export { CURRENT_VERSION };
|
||||||
|
|||||||
Reference in New Issue
Block a user