This commit is contained in:
mtvpls
2026-08-03 19:55:17 +08:00
parent af34dd8545
commit 1be8671d03
5 changed files with 41 additions and 6 deletions
+16
View File
@@ -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页面
+1 -1
View File
@@ -1 +1 @@
224.1.1
224.2.0
+4 -4
View File
@@ -7445,10 +7445,10 @@ function PlayPageClient() {
},
},
{
name: '快捷快进',
html: '快捷快进',
name: '快捷快进配置',
html: '快捷快进配置',
icon: '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 5v14" stroke="#ffffff" stroke-width="2" stroke-linecap="round"/><path d="m16 17 5-5-5-5" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21 12H9" stroke="#ffffff" stroke-width="2" stroke-linecap="round"/></svg>',
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();
};
+19
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '224.1.1';
const CURRENT_VERSION = '224.2.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };