add changelog and version

This commit is contained in:
shinya
2025-08-26 22:59:47 +08:00
parent 701176076e
commit cbbc82fee1
4 changed files with 272 additions and 245 deletions

View File

@@ -1,3 +1,15 @@
## [100.0.0] - 2025-08-26
### Added
- 新增对 SITE_BASE 环境变量的支持,解决 m3u8 重写时 base url 错误的问题
### Changed
- 移除授权相关逻辑
- 移除代码混淆
- 移除 melody-cdn-sharon
## [4.3.0] - 2025-08-26
### Added

View File

@@ -1 +1 @@
4.3.0
100.0.0

View File

@@ -10,6 +10,21 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "100.0.0",
date: "2025-08-26",
added: [
"新增对 SITE_BASE 环境变量的支持,解决 m3u8 重写时 base url 错误的问题"
],
changed: [
"移除授权相关逻辑",
"移除代码混淆",
"移除 melody-cdn-sharon"
],
fixed: [
// 无修复内容
]
},
{
version: "4.3.0",
date: "2025-08-26",

View File

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