merge main

This commit is contained in:
mtvpls
2026-01-21 21:03:32 +08:00
4 changed files with 32 additions and 2 deletions

View File

@@ -11,6 +11,22 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '209.1.0',
date: '2026-01-21',
added: [
"增加禁用自动匹配弹幕",
"增加弹幕上限设置",
"增加禁用弹幕热力图开关"
],
changed: [
"恢复无数据库支持",
"反爬增强"
],
fixed: [
"修复订阅去广告开关不正确修改链接问题"
]
},
{
version: '209.0.0',
date: '2026-01-18',
added: [

View File

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