外部播放器增加去广告

This commit is contained in:
mtvpls
2025-12-05 14:46:25 +08:00
parent 32d2800e25
commit ee3bd86f43
6 changed files with 396 additions and 77 deletions
+11
View File
@@ -10,6 +10,17 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: '200.3.0',
date: '2025-12-05',
added: [
'增加自定义去广告功能'
],
changed: [
'现在外部播放器支持去广告了'
],
fixed: ['修复首页/api/favorites接口重复请求'],
},
{
version: '200.2.0',
date: '2025-12-04',
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '200.2.0';
const CURRENT_VERSION = '200.3.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };