chore: Bump to 4.1.0

This commit is contained in:
senshinya
2025-08-24 17:34:44 +08:00
parent d216904b76
commit 2fd4a2d961
4 changed files with 25 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
## [4.1.0] - 2025-08-24
### Added
- 解析 m3u 自带的 epg 和自定义 epg增加今日节目单
### Changed
- 直播源数据刷新改为并发刷新
## [4.0.0] - 2025-08-24
### Added

View File

@@ -1 +1 @@
4.0.0
4.1.0

View File

@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "4.1.0",
date: "2025-08-24",
added: [
"解析 m3u 自带的 epg 和自定义 epg增加今日节目单"
],
changed: [
"直播源数据刷新改为并发刷新"
],
fixed: [
// 无修复内容
]
},
{
version: "4.0.0",
date: "2025-08-24",

View File

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