From b61db0247888e29c1aad4900be92cbf344c023f2 Mon Sep 17 00:00:00 2001 From: mtvpls Date: Wed, 7 Jan 2026 20:01:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E6=9B=B4=E5=A4=9A=E6=8E=A8=E8=8D=90=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG | 17 +++++++++++++++++ VERSION.txt | 2 +- src/app/admin/page.tsx | 1 + src/app/api/admin/site/route.ts | 4 ++++ src/lib/changelog.ts | 20 ++++++++++++++++++++ src/lib/version.ts | 2 +- 6 files changed, 44 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 384653b..eb1526c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +## [206.2.0] - 2026-01-07 +### Added +- 轮播图数据源增加豆瓣 +- 弹幕开关状态持久化 +- play页面新增复制视频链接 + +### Changed +- 搜索聚合规则增强 +- emby剧集弹幕匹配优化 +- 搜索来源筛选提升私人影库权重 +- 私人影库未配置openlist时自动跳转emby +- 优化弹幕加载逻辑 + +### Fixed +- 修复私人影库报错导致搜索无结果 +- 修复无法保存更多推荐数据源 + ## [206.1.0] - 2026-01-05 ### Added - 新增手动上传弹幕功能 diff --git a/VERSION.txt b/VERSION.txt index 710d300..0c7f103 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -206.1.0 \ No newline at end of file +206.2.0 \ No newline at end of file diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 277ef6c..244d17d 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -6096,6 +6096,7 @@ const SiteConfigComponent = ({ TMDBApiKey: config.SiteConfig.TMDBApiKey || '', TMDBProxy: config.SiteConfig.TMDBProxy || '', BannerDataSource: config.SiteConfig.BannerDataSource || 'Douban', + RecommendationDataSource: config.SiteConfig.RecommendationDataSource || 'Mixed', PansouApiUrl: config.SiteConfig.PansouApiUrl || '', PansouUsername: config.SiteConfig.PansouUsername || '', PansouPassword: config.SiteConfig.PansouPassword || '', diff --git a/src/app/api/admin/site/route.ts b/src/app/api/admin/site/route.ts index e3b3a53..6bcfc05 100644 --- a/src/app/api/admin/site/route.ts +++ b/src/app/api/admin/site/route.ts @@ -44,6 +44,7 @@ export async function POST(request: NextRequest) { TMDBApiKey, TMDBProxy, BannerDataSource, + RecommendationDataSource, PansouApiUrl, PansouUsername, PansouPassword, @@ -82,6 +83,7 @@ export async function POST(request: NextRequest) { TMDBApiKey?: string; TMDBProxy?: string; BannerDataSource?: string; + RecommendationDataSource?: string; PansouApiUrl?: string; PansouUsername?: string; PansouPassword?: string; @@ -123,6 +125,7 @@ export async function POST(request: NextRequest) { (TMDBApiKey !== undefined && typeof TMDBApiKey !== 'string') || (TMDBProxy !== undefined && typeof TMDBProxy !== 'string') || (BannerDataSource !== undefined && typeof BannerDataSource !== 'string') || + (RecommendationDataSource !== undefined && typeof RecommendationDataSource !== 'string') || typeof EnableComments !== 'boolean' || (CustomAdFilterCode !== undefined && typeof CustomAdFilterCode !== 'string') || (CustomAdFilterVersion !== undefined && typeof CustomAdFilterVersion !== 'number') || @@ -173,6 +176,7 @@ export async function POST(request: NextRequest) { TMDBApiKey, TMDBProxy, BannerDataSource, + RecommendationDataSource, PansouApiUrl, PansouUsername, PansouPassword, diff --git a/src/lib/changelog.ts b/src/lib/changelog.ts index d228d46..555a082 100644 --- a/src/lib/changelog.ts +++ b/src/lib/changelog.ts @@ -11,6 +11,26 @@ export interface ChangelogEntry { export const changelog: ChangelogEntry[] = [ { + version: '206.2.0', + date: '2026-01-07', + added: [ + "轮播图数据源增加豆瓣", + "弹幕开关状态持久化", + "play页面新增复制视频链接" + ], + changed: [ + "搜索聚合规则增强", + "emby剧集弹幕匹配优化", + "搜索来源筛选提升私人影库权重", + "私人影库未配置openlist时自动跳转emby", + "优化弹幕加载逻辑" + ], + fixed: [ + "修复私人影库报错导致搜索无结果", + "修复无法保存更多推荐数据源" + ] + }, + { version: '206.1.0', date: '2026-01-05', added: [ diff --git a/src/lib/version.ts b/src/lib/version.ts index 1981a58..0422b46 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -1,6 +1,6 @@ /* eslint-disable no-console */ -const CURRENT_VERSION = '206.1.0'; +const CURRENT_VERSION = '206.2.0'; // 导出当前版本号供其他地方使用 export { CURRENT_VERSION };