From 1be8671d0370a55ae489b9e043a4effeaf4db5b3 Mon Sep 17 00:00:00 2001 From: mtvpls <247332661+mtvpls@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:55:17 +0800 Subject: [PATCH] v2242 --- CHANGELOG | 16 ++++++++++++++++ VERSION.txt | 2 +- src/app/play/page.tsx | 8 ++++---- src/lib/changelog.ts | 19 +++++++++++++++++++ src/lib/version.ts | 2 +- 5 files changed, 41 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7350483..a3c4b73 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +## [224.2.0] - 2026-08-03 +### Added +- 音乐增加均衡器配置 +- 新增快捷快进功能 +- 搜索新增高级面板 +- 搜索新增只搜私人影库 + +### Changed +- anime4k超分使用自管理的 WebGPU 渲染器兼容firefox +- 优化openlist集数识别规则 +- source移除更改为仅对ios Safari生效 +- 影视搜索、聚合开关视图切换移动到高级面板 + +### Fixed +- 修复移动端点击videocard失效问题 + ## [224.1.1] - 2026-07-31 ### Fixed - 修复tv模式登录失效跳转/login页面而非/tv/login页面 diff --git a/VERSION.txt b/VERSION.txt index 89b6845..8f415f2 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -224.1.1 \ No newline at end of file +224.2.0 \ No newline at end of file diff --git a/src/app/play/page.tsx b/src/app/play/page.tsx index 5b1cfd8..8e02c60 100644 --- a/src/app/play/page.tsx +++ b/src/app/play/page.tsx @@ -7445,10 +7445,10 @@ function PlayPageClient() { }, }, { - name: '快捷快进', - html: '快捷快进', + name: '快捷快进配置', + html: '快捷快进配置', icon: '', - tooltip: `当前:${formatQuickForwardDuration(quickForwardSecondsRef.current)},点击修改`, + tooltip: `${formatQuickForwardDuration(quickForwardSecondsRef.current)}`, onClick: async function () { const player = artPlayerRef.current; if (player?.fullscreen) { @@ -7505,7 +7505,7 @@ function PlayPageClient() { quickForwardSecondsRef.current = normalizedSeconds; localStorage.setItem('quickForwardSeconds', String(normalizedSeconds)); if (artPlayerRef.current) { - artPlayerRef.current.notice.show = `快捷快进:${formatQuickForwardDuration(normalizedSeconds)}`; + artPlayerRef.current.notice.show = `快捷快进已设置为${formatQuickForwardDuration(normalizedSeconds)}`; } cleanup(); }; diff --git a/src/lib/changelog.ts b/src/lib/changelog.ts index 929d5c6..35cf1b3 100644 --- a/src/lib/changelog.ts +++ b/src/lib/changelog.ts @@ -10,6 +10,25 @@ export interface ChangelogEntry { } export const changelog: ChangelogEntry[] = [ + { + version: "224.2.0", + date: "2026-08-03", + added: [ + "音乐增加均衡器配置", + "新增快捷快进功能", + "搜索新增高级面板", + "搜索新增只搜私人影库" + ], + changed: [ + "anime4k超分使用自管理的 WebGPU 渲染器兼容firefox", + "优化openlist集数识别规则", + "source移除更改为仅对ios Safari生效", + "影视搜索、聚合开关视图切换移动到高级面板" + ], + fixed: [ + "修复移动端点击videocard失效问题" + ] + }, { version: "224.1.1", date: "2026-07-31", diff --git a/src/lib/version.ts b/src/lib/version.ts index 6c2a3c6..4dc13a5 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -1,6 +1,6 @@ /* eslint-disable no-console */ -const CURRENT_VERSION = '224.1.1'; +const CURRENT_VERSION = '224.2.0'; // 导出当前版本号供其他地方使用 export { CURRENT_VERSION };