修复超分切换时重复渲染

This commit is contained in:
mtvpls
2025-12-20 21:12:01 +08:00
parent 4a6c2042e4
commit eab3fc9b7f
5 changed files with 18 additions and 13 deletions

View File

@@ -11,14 +11,15 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '203.2.1',
version: '203.2.2',
date: '2025-12-20',
added: [
],
changed: [
],
fixed: [
"修复IOS端换集报错播放器初始化失败"
"修复IOS端换集报错播放器初始化失败",
"修复超分切换时重复渲染"
]
},{
version: '203.2.0',

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '203.2.1';
const CURRENT_VERSION = '203.2.2';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };