This commit is contained in:
mtvpls
2026-01-29 21:22:12 +08:00
parent 5b6d6fbdff
commit 2d0df4bb80
4 changed files with 30 additions and 2 deletions

View File

@@ -1,3 +1,16 @@
## [210.2.0] - 2026-01-29
### Added
- 外部播放器增加app打开
- 新增tvbox屏蔽源配置
- 新增视频源权重功能
### Changed
- 设备管理当前设备置顶且显示黄色边框
- live分片代理移除content-length发送
### Fixed
- 修复tmdbkey错误和未登录时获取外部观影室密钥无限重定向
## [210.1.3] - 2026-01-28
### Fixed
- 修复跳转登录不登出

View File

@@ -1,2 +1,2 @@
210.1.3
210.2.0

View File

@@ -11,6 +11,21 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '210.2.0',
date: '2026-01-29',
added: [
"外部播放器增加app打开",
"新增tvbox屏蔽源配置",
"新增视频源权重功能"
],
changed: [
"设备管理当前设备置顶且显示黄色边框",
"live分片代理移除content-length发送"
],
fixed: [
"修复tmdbkey错误和未登录时获取外部观影室密钥无限重定向"
]
},{
version: '210.1.3',
date: '2026-01-28',
added: [

View File

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