mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-04 03:36:22 +08:00
chore: Bump to 4.2.0
This commit is contained in:
16
CHANGELOG
16
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
|
## [4.1.1] - 2025-08-25
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.1.1
|
4.2.0
|
||||||
@@ -10,6 +10,21 @@ export interface ChangelogEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const changelog: 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",
|
version: "4.1.1",
|
||||||
date: "2025-08-25",
|
date: "2025-08-25",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable no-console */
|
/* eslint-disable no-console */
|
||||||
|
|
||||||
const CURRENT_VERSION = '4.1.1';
|
const CURRENT_VERSION = '4.2.0';
|
||||||
|
|
||||||
// 导出当前版本号供其他地方使用
|
// 导出当前版本号供其他地方使用
|
||||||
export { CURRENT_VERSION };
|
export { CURRENT_VERSION };
|
||||||
|
|||||||
Reference in New Issue
Block a user