From 38c1874f7f66ebf1517ae370006f6e91dcb8af67 Mon Sep 17 00:00:00 2001 From: senshinya Date: Tue, 26 Aug 2025 01:06:48 +0800 Subject: [PATCH] chore: Bump to 4.2.0 --- CHANGELOG | 16 ++++++++++++++++ VERSION.txt | 2 +- src/lib/changelog.ts | 15 +++++++++++++++ src/lib/version.ts | 2 +- 4 files changed, 33 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 749431d..7f8ea5e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +## [4.2.0] - 2025-08-26 + +### Added + +- 支持 flv 直播和直播地址解析到 mp4 的处理 +- 增加直播台标的 proxy 以防止 cors +- 支持播放页选集分组的滚动翻页 + +### Changed + +- 管理后台页面的按钮增加加载中的 UI + +### Fixed + +- /api/proxy/m3u8 仅对 m3u8 内容反序列化,降低内存和 CPU 消耗 + ## [4.1.1] - 2025-08-25 ### Changed diff --git a/VERSION.txt b/VERSION.txt index 2582ddd..ef8d756 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -4.1.1 \ No newline at end of file +4.2.0 \ No newline at end of file diff --git a/src/lib/changelog.ts b/src/lib/changelog.ts index f2dc418..fbfc584 100644 --- a/src/lib/changelog.ts +++ b/src/lib/changelog.ts @@ -10,6 +10,21 @@ export interface ChangelogEntry { } export const changelog: ChangelogEntry[] = [ + { + version: "4.2.0", + date: "2025-08-26", + added: [ + "支持 flv 直播和直播地址解析到 mp4 的处理", + "增加直播台标的 proxy 以防止 cors", + "支持播放页选集分组的滚动翻页" + ], + changed: [ + "管理后台页面的按钮增加加载中的 UI" + ], + fixed: [ + "/api/proxy/m3u8 仅对 m3u8 内容反序列化,降低内存和 CPU 消耗" + ] + }, { version: "4.1.1", date: "2025-08-25", diff --git a/src/lib/version.ts b/src/lib/version.ts index c0e62f1..0ee5544 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -1,6 +1,6 @@ /* eslint-disable no-console */ -const CURRENT_VERSION = '4.1.1'; +const CURRENT_VERSION = '4.2.0'; // 导出当前版本号供其他地方使用 export { CURRENT_VERSION };