编写v204更新日志

This commit is contained in:
mtvpls
2025-12-25 20:24:21 +08:00
parent b0da4e90e7
commit 8999577e80
4 changed files with 39 additions and 3 deletions

View File

@@ -1,3 +1,19 @@
## [204.0.0] - 2025-12-25
### Added
- ⚠️⚠️⚠️更新此版本前前务必进行备份!!!⚠️⚠️⚠️
- 新增私人影视库功能(实验性)
- 增加弹幕热力图
- 增加盘搜搜索资源
### Changed
- 完全重构用户数据存储结构
- 提高所有弹幕接口的超时时间
- 优化完结标识判断
- 即将上映移动端字体大小调整
- tmdb增加代理支持
- 剧集更新检测改为服务器后台定时执行
## [203.2.2] - 2025-12-20
### Fixed

View File

@@ -1 +1 @@
203.2.2
204.0.0

View File

@@ -11,6 +11,25 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '204.0.0',
date: '2025-12-20',
added: [
"新增私人影视库功能(实验性)",
"增加弹幕热力图",
"增加盘搜搜索资源"
],
changed: [
"完全重构用户数据存储结构",
"提高所有弹幕接口的超时时间",
"优化完结标识判断",
"即将上映移动端字体大小调整",
"tmdb增加代理支持",
"剧集更新检测改为服务器后台定时执行"
],
fixed: [
]
},
{
version: '203.2.2',
date: '2025-12-20',
added: [
@@ -21,7 +40,8 @@ export const changelog: ChangelogEntry[] = [
"修复IOS端换集报错播放器初始化失败",
"修复超分切换时重复渲染"
]
},{
},
{
version: '203.2.0',
date: '2025-12-19',
added: [

View File

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