From 4e82791ea66de3ed7dd797e67ec29ad65287bbd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B8=85?= <2944435683> Date: Thu, 2 Apr 2026 23:54:56 +0800 Subject: [PATCH 1/2] no message --- scripts/main.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/main.ts b/scripts/main.ts index eef2e45..b505693 100644 --- a/scripts/main.ts +++ b/scripts/main.ts @@ -240,6 +240,11 @@ app.whenReady().then(async () => { closeServeFn = mod.closeServe; const port = await mod.default(true); process.env.PORT = port; + await new Promise((resolve, reject) => { + setTimeout(() => { + resolve(); + }, 2000); + }); // 注册协议处理器 protocol.handle("toonflow", (request) => { const url = new URL(request.url); From 6549ae2df88694204fc94eb762c496d83d2c159b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B8=85?= <2944435683> Date: Fri, 3 Apr 2026 00:34:15 +0800 Subject: [PATCH 2/2] no message --- src/types/database.d.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/types/database.d.ts b/src/types/database.d.ts index a8c2754..62a13d9 100644 --- a/src/types/database.d.ts +++ b/src/types/database.d.ts @@ -1,6 +1,21 @@ -// @db-hash 7af86e2bafe5cab7d175eb68cf76ed7a +// @db-hash 35cf00f711e9d4df398703de70511684 //该文件由脚本自动生成,请勿手动修改 +export interface _o_project_old_20260402 { + 'artStyle'?: string | null; + 'createTime'?: number | null; + 'id'?: number | null; + 'imageModel'?: string | null; + 'imageQuality'?: string | null; + 'intro'?: string | null; + 'mode'?: string | null; + 'name'?: string | null; + 'projectType'?: string | null; + 'type'?: string | null; + 'userId'?: number | null; + 'videoModel'?: string | null; + 'videoRatio'?: string | null; +} export interface _o_storyboard_old_20260402 { 'createTime'?: number | null; 'duration'?: string | null; @@ -165,6 +180,7 @@ export interface o_outlineNovel { export interface o_project { 'artStyle'?: string | null; 'createTime'?: number | null; + 'directorManual'?: string | null; 'id'?: number | null; 'imageModel'?: string | null; 'imageQuality'?: string | null; @@ -285,6 +301,7 @@ export interface o_videoTrack { } export interface DB { + "_o_project_old_20260402": _o_project_old_20260402; "_o_storyboard_old_20260402": _o_storyboard_old_20260402; "_o_storyboard_old_20260402_1": _o_storyboard_old_20260402_1; "_o_vendorConfig_old_20260401": _o_vendorConfig_old_20260401;