This commit is contained in:
mtvpls
2026-07-06 09:51:11 +08:00
parent fd8bf3d587
commit 7e5d366fcd
4 changed files with 26 additions and 2 deletions
+8
View File
@@ -1,3 +1,11 @@
## [223.3.0] - 2026-07-06
### Added
- 接入Telegram Bot功能
- 增加本地播放/离线播放状态标识
- 公告增加每次显示模式
- 增加光鸭云盘名称映射
## [223.2.0] - 2026-06-25
### Added
- EdgeOne部署支持
+1 -1
View File
@@ -1 +1 @@
223.2.0
223.3.0
+16
View File
@@ -10,6 +10,22 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "223.3.0",
date: "2026-07-06",
added: [
"接入Telegram Bot功能",
"增加本地播放/离线播放状态标识",
"公告增加每次显示模式",
"增加光鸭云盘名称映射"
],
changed: [
// 无变更内容
],
fixed: [
// 无修复内容
]
},
{
version: "223.2.0",
date: "2026-06-25",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '223.2.0';
const CURRENT_VERSION = '223.3.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };