chore: Bump to 4.2.0

This commit is contained in:
senshinya
2025-08-26 01:06:48 +08:00
parent 5e93d608ee
commit 38c1874f7f
4 changed files with 33 additions and 2 deletions

View File

@@ -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

View File

@@ -1 +1 @@
4.1.1
4.2.0

View File

@@ -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",

View File

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