This commit is contained in:
mtvpls
2026-02-07 22:15:55 +08:00
parent a63e402b81
commit e619cbe62a
5 changed files with 44 additions and 5 deletions

View File

@@ -1,3 +1,23 @@
## [212.0.0] - 2026-02-07
### Added
- 接入Tunehub实现音乐播放
- 网络直播支持观影室同步
- 详情图片点击可预览
- oidc登录图标自动识别多平台
### Changed
- 获取用户站长无信息时返回默认值兜底
- 继续观看使用渐进式加载模式
- openlist根路径主动移除bom防止获取根目录失效
- webgpu缓冲区大小调整
- 设备管理可识别OrionTv
### Fixed
- 修复与upstash合并数据源时丢失的用户缓存信息
- 修复登录页面不处理error参数
- 修复safari视频切换集数无法清理旧视频
- 修复部分tmdb接口在cloudflare下无法使用
## [211.0.0] - 2026-02-01
### Added
- cloudflare部署增加d1支持
@@ -751,5 +771,4 @@
### Added
- 基于 Semantic Versioning 的版本号机制
- 版本信息面板,展示本地变更日志和远程更新日志

View File

@@ -1,2 +1,2 @@
211.0.0
212.0.0

View File

@@ -45,8 +45,6 @@ const FireworksCanvas = () => {
const context = canvas.getContext('2d');
if (!context) return;
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
let width = 0;
let height = 0;
let dpr = window.devicePixelRatio || 1;

View File

@@ -11,6 +11,28 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '212.0.0',
date: '2026-02-07',
added: [
"接入Tunehub实现音乐播放",
"网络直播支持观影室同步",
"详情图片点击可预览",
"oidc登录图标自动识别多平台"
],
changed: [
"获取用户站长无信息时返回默认值兜底",
"继续观看使用渐进式加载模式",
"openlist根路径主动移除bom防止获取根目录失效",
"webgpu缓冲区大小调整",
"设备管理可识别OrionTv"
],
fixed: [
"修复与upstash合并数据源时丢失的用户缓存信息",
"修复登录页面不处理error参数",
"修复safari视频切换集数无法清理旧视频",
"修复部分tmdb接口在cloudflare下无法使用"
]
},{
version: '211.0.0',
date: '2026-02-01',
added: [

View File

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