This commit is contained in:
mtvpls
2026-02-08 23:31:12 +08:00
parent b5177833c3
commit ed17a74a12
4 changed files with 23 additions and 2 deletions

View File

@@ -11,6 +11,19 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '212.1.0',
date: '2026-02-08',
added: [
"新增 Vercel Postgres 数据库支持"
],
changed: [
"自动创建站长账号,避免外键约束导致无法操作关联表",
"即将上映恢复长按菜单,上映天数改为点击显示"
],
fixed: [
]
},
{
version: '212.0.0',
date: '2026-02-07',
added: [

View File

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