This commit is contained in:
mtvpls
2026-07-31 22:27:32 +08:00
parent 27667b0b1b
commit 2c8941edf9
4 changed files with 19 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
## [224.1.1] - 2026-07-31
### Fixed
- 修复tv模式登录失效跳转/login页面而非/tv/login页面
## [224.1.0] - 2026-07-31
### Added
- 生态应用增加moontvplus浏览器插件
+1 -1
View File
@@ -1 +1 @@
224.1.0
224.1.1
+13
View File
@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "224.1.1",
date: "2026-07-31",
added: [
// 无新增内容
],
changed: [
// 无变更内容
],
fixed: [
"修复tv模式登录失效跳转/login页面而非/tv/login页面"
]
},
{
version: "224.1.0",
date: "2026-07-31",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '224.1.0';
const CURRENT_VERSION = '224.1.1';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };