This commit is contained in:
mtvpls
2026-04-20 20:02:24 +08:00
parent 0ae30faf67
commit 2734de0c85
4 changed files with 50 additions and 2 deletions
+23
View File
@@ -1,3 +1,26 @@
## [218.0.0] - 2026-04-20
### Added
- 新增sqlite数据库支持
- play页面缓存引入主动清理机制
- 用户菜单新增个人中心
- 新增也许你想看功能
- 新增基于lxserver的音乐功能
- 新增弹幕自动装填默认开关设置
- 增加漫画展馆功能
- 选集屏蔽增加相反模式
- 增加弹幕缓存大小统计
- 新增本地多集进度保存功能
- 搜索页面增加结果统计
### Changed
- 换源集数不一致时清空当前剧集弹幕缓存
- 优化safari浏览器的体验
- 视频源脚本缓存更改为内存缓存
### Fixed
- 修复videocard右键菜单缩略图不使用备用源
## [217.0.0] - 2026-04-10
### Added
- 新增注册邀请码功能
+1 -1
View File
@@ -1 +1 @@
217.0.0
218.0.0
+25
View File
@@ -10,6 +10,31 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "218.0.0",
date: "2026-04-20",
added: [
"新增sqlite数据库支持",
"play页面缓存引入主动清理机制",
"用户菜单新增个人中心",
"新增也许你想看功能",
"新增基于lxserver的音乐功能",
"新增弹幕自动装填默认开关设置",
"增加漫画展馆功能",
"选集屏蔽增加相反模式",
"增加弹幕缓存大小统计",
"新增本地多集进度保存功能",
"搜索页面增加结果统计"
],
changed: [
"换源集数不一致时清空当前剧集弹幕缓存",
"优化safari浏览器的体验",
"视频源脚本缓存更改为内存缓存"
],
fixed: [
"修复videocard右键菜单缩略图不使用备用源"
]
},
{
version: "217.0.0",
date: "2026-04-10",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '217.0.0';
const CURRENT_VERSION = '218.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };