新增评论抓取,修改更新日志

This commit is contained in:
mtvpls
2025-12-02 21:36:59 +08:00
parent 1c058c1774
commit 73be7f6ec4
9 changed files with 567 additions and 2 deletions
+15
View File
@@ -10,6 +10,21 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "200.0.0",
date: "2025-12-02",
added: [
"新增外部播放器跳转",
"新增视频超分",
"新增弹幕抓取",
"新增评论抓取"
],
changed: [
],
fixed: [
"修复首页卡顿"
]
},
{
version: "100.0.0",
date: "2025-08-26",
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '100.0.0';
const CURRENT_VERSION = '200.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };