编写v207更新日志

This commit is contained in:
mtvpls
2026-01-13 20:16:45 +08:00
parent 28528ad2cb
commit 8f72498cbb
4 changed files with 39 additions and 2 deletions

View File

@@ -1,3 +1,20 @@
## [207.0.0] - 2026-01-13
### Added
- 私人影库增加小雅支持
- 测速增加码率测算
- 私人影库增加求片功能
- 搜索增加简繁转换器
### Changed
- 视频源保留关键字增加xiaoyaemby
- 年代筛选的年代改为动态生成
- openlist支持视频预览方式播放
### Fixed
- 修复upstash方式数据导入报错
- 修复新加载弹幕不显示弹幕数量
- 修复生产环境emby分类返回空数组
## [206.3.0] - 2026-01-10
### Added
- emby支持配置多源

View File

@@ -1 +1 @@
206.3.0
207.0.0

View File

@@ -11,6 +11,26 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '207.0.0',
date: '2026-01-13',
added: [
"私人影库增加小雅支持",
"测速增加码率测算",
"私人影库增加求片功能",
"搜索增加简繁转换器"
],
changed: [
"视频源保留关键字增加xiaoyaemby",
"年代筛选的年代改为动态生成",
"openlist支持视频预览方式播放"
],
fixed: [
"修复upstash方式数据导入报错",
"修复新加载弹幕不显示弹幕数量",
"修复生产环境emby分类返回空数组"
]
},
{
version: '206.3.0',
date: '2026-01-10',
added: [

View File

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