From 818fe7cc03976326f6279393e011963111d803b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=B1=BC=E5=BC=80=E5=8F=91?= Date: Sun, 24 May 2026 22:16:46 +0800 Subject: [PATCH] release: v1.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix: finalVideoDuration 遗漏导致切换项目时残留旧值且无法保存 - feat: BGM 云端化(129 首上传七牛云,数据库保存 URL) - feat: BGM 弹窗改为分类+列表+试听交互 - feat: 步骤页面 UI 统一(按钮规范、预览状态、去掉图标) - feat: CoverDesign 视觉重构(绿色边框、角标、hover 遮罩) - fix: 消除积分预检硬编码(CoverDesign/SubtitleBurning/VideoCompose) - fix: success 提示积分去掉硬编码 - fix: BGM/封面形象持久化到 meta.json --- VERSION | 2 +- tauri-app/package.json | 2 +- tauri-app/src-tauri/Cargo.lock | 2 +- tauri-app/src-tauri/Cargo.toml | 2 +- tauri-app/src-tauri/tauri.conf.json | 2 +- tauri-app/src/api/modules/localStorage.ts | 1 + tauri-app/src/utils/projectMeta.ts | 1 + 7 files changed, 7 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 83d4cf8..dc1e644 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.18 +1.6.0 diff --git a/tauri-app/package.json b/tauri-app/package.json index 2203d7c..6ebe5cc 100644 --- a/tauri-app/package.json +++ b/tauri-app/package.json @@ -1,7 +1,7 @@ { "name": "tauri-app", "private": true, - "version": "1.5.19", + "version": "1.6.0", "type": "module", "scripts": { "dev": "vite", diff --git a/tauri-app/src-tauri/Cargo.lock b/tauri-app/src-tauri/Cargo.lock index 7f52ad8..2f14707 100644 --- a/tauri-app/src-tauri/Cargo.lock +++ b/tauri-app/src-tauri/Cargo.lock @@ -4219,7 +4219,7 @@ dependencies = [ [[package]] name = "tauri-app" -version = "1.5.19" +version = "1.6.0" dependencies = [ "base64 0.22.1", "chrono", diff --git a/tauri-app/src-tauri/Cargo.toml b/tauri-app/src-tauri/Cargo.toml index bf62503..61e7825 100644 --- a/tauri-app/src-tauri/Cargo.toml +++ b/tauri-app/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-app" -version = "1.5.19" +version = "1.6.0" description = "美家卡智影 - AI 视频创作桌面应用" authors = ["美家卡科技"] edition = "2021" diff --git a/tauri-app/src-tauri/tauri.conf.json b/tauri-app/src-tauri/tauri.conf.json index be28968..a184a4c 100644 --- a/tauri-app/src-tauri/tauri.conf.json +++ b/tauri-app/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "美家卡智影", - "version": "1.5.19", + "version": "1.6.0", "identifier": "cn.meijiaka.ai-zy", "build": { "beforeDevCommand": "npm run dev", diff --git a/tauri-app/src/api/modules/localStorage.ts b/tauri-app/src/api/modules/localStorage.ts index a2d8f5f..91dd2e5 100644 --- a/tauri-app/src/api/modules/localStorage.ts +++ b/tauri-app/src/api/modules/localStorage.ts @@ -101,6 +101,7 @@ export const localProjectApi = { updatedAt: meta.updatedAt, coverPath: meta.coverPath, finalVideoPath: meta.finalVideoPath, + finalVideoDuration: meta.finalVideoDuration, exportedAt: meta.exportedAt, selectedVoiceId: meta.selectedVoiceId, composedVideoUrl: meta.composedVideoUrl, diff --git a/tauri-app/src/utils/projectMeta.ts b/tauri-app/src/utils/projectMeta.ts index 4993cd6..af4bce0 100644 --- a/tauri-app/src/utils/projectMeta.ts +++ b/tauri-app/src/utils/projectMeta.ts @@ -143,6 +143,7 @@ export const BLANK_META_OVERRIDES: MetaOverrides = { subcategoryCode: undefined, selectedVoiceId: undefined, finalVideoPath: undefined, + finalVideoDuration: undefined, coverPath: undefined, coverConfig: undefined, exportedAt: undefined,