This commit is contained in:
mtvpls
2026-07-21 20:30:31 +08:00
parent 9e50103630
commit 996740a107
4 changed files with 40 additions and 2 deletions
+16
View File
@@ -1,3 +1,19 @@
## [224.0.0] - 2026-07-21
### Added
- 新增Turso(libSQL)数据库支持
- 新增流量分析功能
- 动漫订阅增加排除关键词
- 增加客户端去广告配置
- openlist增加路径元信息配置分类和自动刷新链接功能
- 增加动漫数据源桜色镜像站
### Changed
- tgbot站点名改为自定义站点名
- webtv局域网遥控二维码可聚焦
- 设备识别移除tgbot
- IOS PWA沉浸式状态栏支持
- 优化动漫数据源图片降级策略
## [223.3.0] - 2026-07-06
### Added
- 接入Telegram Bot功能
+1 -1
View File
@@ -1 +1 @@
223.3.0
224.0.0
+22
View File
@@ -10,6 +10,28 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "224.0.0",
date: "2026-07-21",
added: [
"新增Turso(libSQL)数据库支持",
"新增流量分析功能",
"动漫订阅增加排除关键词",
"增加客户端去广告配置",
"openlist增加路径元信息配置分类和自动刷新链接功能",
"增加动漫数据源桜色镜像站"
],
changed: [
"tgbot站点名改为自定义站点名",
"webtv局域网遥控二维码可聚焦",
"设备识别移除tgbot",
"IOS PWA沉浸式状态栏支持",
"优化动漫数据源图片降级策略"
],
fixed: [
// 无修复内容
]
},
{
version: "223.3.0",
date: "2026-07-06",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '223.3.0';
const CURRENT_VERSION = '224.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };