修复 webkit 下播放器控件的展示 bug

This commit is contained in:
shinya
2025-10-27 23:21:11 +08:00
parent 8815e138e5
commit 9906b5be03
6 changed files with 25 additions and 4 deletions

View File

@@ -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

View File

@@ -1 +1 @@
100.0.2 100.0.3

View File

@@ -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,

View File

@@ -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,

View File

@@ -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",

View File

@@ -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 };