add changelog and version
This commit is contained in:
@@ -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
|
## [4.3.0] - 2025-08-26
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
4.3.0
|
100.0.0
|
||||||
@@ -10,6 +10,21 @@ export interface ChangelogEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const changelog: 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",
|
version: "4.3.0",
|
||||||
date: "2025-08-26",
|
date: "2025-08-26",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable no-console */
|
/* eslint-disable no-console */
|
||||||
|
|
||||||
const CURRENT_VERSION = '4.3.0';
|
const CURRENT_VERSION = '100.0.0';
|
||||||
|
|
||||||
// 导出当前版本号供其他地方使用
|
// 导出当前版本号供其他地方使用
|
||||||
export { CURRENT_VERSION };
|
export { CURRENT_VERSION };
|
||||||
|
|||||||
Reference in New Issue
Block a user