This commit is contained in:
mtvpls
2026-01-25 23:39:35 +08:00
parent e6db59a16d
commit 5ef590fe5b
4 changed files with 41 additions and 2 deletions

View File

@@ -11,6 +11,27 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '210.0.0',
date: '2026-01-25',
added: [
"新增网络直播功能",
"动漫磁力搜索增加蜜柑",
"弹幕磁力搜索增加动漫花园",
"pansou增加关键词过滤",
"cloudflare workers部署支持",
],
changed: [
"去广告增强",
"登录验证机制改为Token+Refresh Token形式",
"移除旧版用户操作残留"
],
fixed: [
"修复缓存弹幕限制后不显示原始数量",
"修复测速缓存导致的错误测速数据",
"修复videocard2000年只显示0年"
]
},
{
version: '209.1.0',
date: '2026-01-21',
added: [

View File

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