Skip to content

Commit 2734de0

Browse files
author
mtvpls
committed
v218
1 parent 0ae30fa commit 2734de0

4 files changed

Lines changed: 50 additions & 2 deletions

File tree

CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## [218.0.0] - 2026-04-20
2+
### Added
3+
- 新增sqlite数据库支持
4+
- play页面缓存引入主动清理机制
5+
- 用户菜单新增个人中心
6+
- 新增也许你想看功能
7+
- 新增基于lxserver的音乐功能
8+
- 新增弹幕自动装填默认开关设置
9+
- 增加漫画展馆功能
10+
- 选集屏蔽增加相反模式
11+
- 增加弹幕缓存大小统计
12+
- 新增本地多集进度保存功能
13+
- 搜索页面增加结果统计
14+
15+
16+
### Changed
17+
- 换源集数不一致时清空当前剧集弹幕缓存
18+
- 优化safari浏览器的体验
19+
- 视频源脚本缓存更改为内存缓存
20+
21+
### Fixed
22+
- 修复videocard右键菜单缩略图不使用备用源
23+
124
## [217.0.0] - 2026-04-10
225
### Added
326
- 新增注册邀请码功能

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
217.0.0
1+
218.0.0

src/lib/changelog.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,31 @@ export interface ChangelogEntry {
1010
}
1111

1212
export const changelog: ChangelogEntry[] = [
13+
{
14+
version: "218.0.0",
15+
date: "2026-04-20",
16+
added: [
17+
"新增sqlite数据库支持",
18+
"play页面缓存引入主动清理机制",
19+
"用户菜单新增个人中心",
20+
"新增也许你想看功能",
21+
"新增基于lxserver的音乐功能",
22+
"新增弹幕自动装填默认开关设置",
23+
"增加漫画展馆功能",
24+
"选集屏蔽增加相反模式",
25+
"增加弹幕缓存大小统计",
26+
"新增本地多集进度保存功能",
27+
"搜索页面增加结果统计"
28+
],
29+
changed: [
30+
"换源集数不一致时清空当前剧集弹幕缓存",
31+
"优化safari浏览器的体验",
32+
"视频源脚本缓存更改为内存缓存"
33+
],
34+
fixed: [
35+
"修复videocard右键菜单缩略图不使用备用源"
36+
]
37+
},
1338
{
1439
version: "217.0.0",
1540
date: "2026-04-10",

src/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-console */
22

3-
const CURRENT_VERSION = '217.0.0';
3+
const CURRENT_VERSION = '218.0.0';
44

55
// 导出当前版本号供其他地方使用
66
export { CURRENT_VERSION };

0 commit comments

Comments
 (0)