chore: Bump to 4.3.0

This commit is contained in:
senshinya
2025-08-26 16:39:06 +08:00
parent 15b20603b8
commit 40b7e017b0
4 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
## [4.3.0] - 2025-08-26
### Added
- 支持将 IPTV 频道添加到收藏中
### Changed
- 禁用 flv 直播,仅支持 m3u8 直播
- 降低代理 ts 分片的内存占用
## [4.2.1] - 2025-08-26
### Fixed

View File

@@ -1 +1 @@
4.2.1
4.3.0

View File

@@ -10,6 +10,20 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "4.3.0",
date: "2025-08-26",
added: [
"支持将 IPTV 频道添加到收藏中"
],
changed: [
"禁用 flv 直播,仅支持 m3u8 直播",
"降低代理 ts 分片的内存占用"
],
fixed: [
// 无修复内容
]
},
{
version: "4.2.1",
date: "2025-08-26",

View File

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