编写v203更新日志

This commit is contained in:
mtvpls
2025-12-17 22:09:09 +08:00
parent 6a12951753
commit 020197201a
6 changed files with 167 additions and 2 deletions
+19
View File
@@ -11,6 +11,25 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '203.0.0',
date: '2025-12-17',
added: [
'首页新增即将上映模块',
'新增剧集屏蔽功能',
'换源增加重新测试和质量排序'
],
changed: [
'IOS全屏体验优化',
'站点配置中的注册相关配置移动到了新的注册配置大项中',
'默认站名从MoonTV改为MoonTVPlus',
'用户管理现在会给oidc注册的用户显示oidc标识',
],
fixed: [
'修复压缩节目单无法加载',
'修复Docker环境下离线下载无法开启'
]
},
{
version: '202.0.0',
date: '2025-12-14',
added: [
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '202.0.0';
const CURRENT_VERSION = '203.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };