This commit is contained in:
mtvpls
2026-01-21 21:00:36 +08:00
parent bcdd2464ca
commit 4737693865
4 changed files with 31 additions and 2 deletions

View File

@@ -1,3 +1,16 @@
## [209.1.0] - 2026-01-21
### Added
- 增加禁用自动匹配弹幕
- 增加弹幕上限设置
- 增加禁用弹幕热力图开关
### Changed
- 恢复无数据库支持
- 反爬增强
### Fixed
- 修复订阅去广告开关不正确修改链接问题
## [209.0.0] - 2026-01-18
### Added
- 新增收藏更新邮件发送

View File

@@ -1 +1 @@
209.0.0
209.1.0

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 };