修复因弹幕缓存导致弹幕过滤功能失效的bug

This commit is contained in:
mtvpls
2025-12-10 20:43:56 +08:00
parent 7e439bcecb
commit 5805c6f8f2
5 changed files with 65 additions and 5 deletions
+12
View File
@@ -10,6 +10,18 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: '201.0.1',
date: '2025-12-10',
added: [
],
changed: [
],
fixed: [
'修复因弹幕缓存导致弹幕过滤功能失效的bug'
]
},
{
version: '201.0.0',
date: '2025-12-10',
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '201.0.0';
const CURRENT_VERSION = '201.0.1';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };