编写v203.1更新日志

This commit is contained in:
mtvpls
2025-12-18 19:38:09 +08:00
parent dc14cef783
commit bac92c4abe
4 changed files with 30 additions and 2 deletions

View File

@@ -1,3 +1,15 @@
## [203.1.0] - 2025-12-18
### Added
- 直播页面增加超分功能
- 直播节目单增加Timeline视图
- 直播页面增加外部播放器
### Changed
- 直播观看记录会出现在继续观看列表了
- 直播页面切换频道现在地址栏会跟随变化
- 直播首次加载节目单改为异步
## [203.0.0] - 2025-12-17
### Added

View File

@@ -1 +1 @@
203.0.0
203.1.0

View File

@@ -11,6 +11,22 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '203.1.0',
date: '2025-12-18',
added: [
'直播页面增加超分功能',
'直播节目单增加Timeline视图',
'直播页面增加外部播放器'
],
changed: [
'直播观看记录会出现在继续观看列表了',
'直播页面切换频道现在地址栏会跟随变化',
'直播首次加载节目单改为异步'
],
fixed: [
]
},
{
version: '203.0.0',
date: '2025-12-17',
added: [

View File

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