release: v1.6.0
- fix: finalVideoDuration 遗漏导致切换项目时残留旧值且无法保存 - feat: BGM 云端化(129 首上传七牛云,数据库保存 URL) - feat: BGM 弹窗改为分类+列表+试听交互 - feat: 步骤页面 UI 统一(按钮规范、预览状态、去掉图标) - feat: CoverDesign 视觉重构(绿色边框、角标、hover 遮罩) - fix: 消除积分预检硬编码(CoverDesign/SubtitleBurning/VideoCompose) - fix: success 提示积分去掉硬编码 - fix: BGM/封面形象持久化到 meta.json
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tauri-app",
|
"name": "tauri-app",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.5.19",
|
"version": "1.6.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
Generated
+1
-1
@@ -4219,7 +4219,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-app"
|
name = "tauri-app"
|
||||||
version = "1.5.19"
|
version = "1.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri-app"
|
name = "tauri-app"
|
||||||
version = "1.5.19"
|
version = "1.6.0"
|
||||||
description = "美家卡智影 - AI 视频创作桌面应用"
|
description = "美家卡智影 - AI 视频创作桌面应用"
|
||||||
authors = ["美家卡科技"]
|
authors = ["美家卡科技"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "美家卡智影",
|
"productName": "美家卡智影",
|
||||||
"version": "1.5.19",
|
"version": "1.6.0",
|
||||||
"identifier": "cn.meijiaka.ai-zy",
|
"identifier": "cn.meijiaka.ai-zy",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run dev",
|
"beforeDevCommand": "npm run dev",
|
||||||
|
|||||||
@@ -101,6 +101,7 @@ export const localProjectApi = {
|
|||||||
updatedAt: meta.updatedAt,
|
updatedAt: meta.updatedAt,
|
||||||
coverPath: meta.coverPath,
|
coverPath: meta.coverPath,
|
||||||
finalVideoPath: meta.finalVideoPath,
|
finalVideoPath: meta.finalVideoPath,
|
||||||
|
finalVideoDuration: meta.finalVideoDuration,
|
||||||
exportedAt: meta.exportedAt,
|
exportedAt: meta.exportedAt,
|
||||||
selectedVoiceId: meta.selectedVoiceId,
|
selectedVoiceId: meta.selectedVoiceId,
|
||||||
composedVideoUrl: meta.composedVideoUrl,
|
composedVideoUrl: meta.composedVideoUrl,
|
||||||
|
|||||||
@@ -143,6 +143,7 @@ export const BLANK_META_OVERRIDES: MetaOverrides = {
|
|||||||
subcategoryCode: undefined,
|
subcategoryCode: undefined,
|
||||||
selectedVoiceId: undefined,
|
selectedVoiceId: undefined,
|
||||||
finalVideoPath: undefined,
|
finalVideoPath: undefined,
|
||||||
|
finalVideoDuration: undefined,
|
||||||
coverPath: undefined,
|
coverPath: undefined,
|
||||||
coverConfig: undefined,
|
coverConfig: undefined,
|
||||||
exportedAt: undefined,
|
exportedAt: undefined,
|
||||||
|
|||||||
Reference in New Issue
Block a user