This commit is contained in:
mtvpls
2026-06-25 22:21:43 +08:00
parent 5625dd204c
commit 528ded1b3f
4 changed files with 44 additions and 2 deletions
+20
View File
@@ -1,3 +1,23 @@
## [223.2.0] - 2026-06-25
### Added
- EdgeOne部署支持
- Web TV增加局域网遥控
- 动漫磁力搜索增加Nyaa源
- 下载增加IndexedDB模式
- 增加下载内容导出功能
- 增加自定义X-Emby-Authorization
### Changed
- UC和夸克网盘增加自动续期机制
- 优化预加载策略
- 扫码登录成功返回上一页
- 用户登出立即失效所有token
### Fixed
- 修复AI总开关关闭后AI评论仍然显示
- 修复搜索页带类型参数时仍后台搜索影视类型
## [223.1.0] - 2026-06-15
### Added
- web tv模式增加上下键可改为菜单模式
+1 -1
View File
@@ -1 +1 @@
223.1.0
223.2.0
+22
View File
@@ -10,6 +10,28 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "223.2.0",
date: "2026-06-25",
added: [
"EdgeOne部署支持",
"Web TV增加局域网遥控",
"动漫磁力搜索增加Nyaa源",
"下载增加IndexedDB模式",
"增加下载内容导出功能",
"增加自定义X-Emby-Authorization"
],
changed: [
"UC和夸克网盘增加自动续期机制",
"优化预加载策略",
"扫码登录成功返回上一页",
"用户登出立即失效所有token"
],
fixed: [
"修复AI总开关关闭后AI评论仍然显示",
"修复搜索页带类型参数时仍后台搜索影视类型"
]
},
{
version: "223.1.0",
date: "2026-06-15",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '223.1.0';
const CURRENT_VERSION = '223.2.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };