Files
meijiaka-zy/tauri-app/src-tauri/tauri.conf.json
T
小鱼开发 818fe7cc03 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
2026-05-24 22:16:46 +08:00

103 lines
2.5 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "美家卡智影",
"version": "1.6.0",
"identifier": "cn.meijiaka.ai-zy",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "美家卡 智影",
"width": 1440,
"height": 960,
"minWidth": 960,
"minHeight": 640,
"resizable": true,
"visible": false
}
],
"security": {
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' https: data: blob: asset: http://asset.localhost; media-src 'self' https: blob: asset: http://asset.localhost; connect-src 'self' https: ws://localhost:*;",
"capabilities": [
"default"
],
"assetProtocol": {
"enable": true,
"scope": [
"$APPLOCALDATA/**",
"$APPDATA/**",
"$APPCONFIG/**",
"/**"
]
}
}
},
"plugins": {
"opener": {},
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIwOEVEODY4MTgyRkJFRTMKUldUanZpOFlhTmlPSUJzS0FLL1NMUEgzLzRtNXpsT1FoTXZlS3JLOHJvak5KeThIeDJQRFpJZWgK",
"endpoints": [
"https://dev.tapi.meijiaka.cn/api/v1/update/check?version={{current_version}}&target={{target}}&arch={{arch}}"
]
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": [
"nsis",
"dmg",
"app"
],
"externalBin": [
"binaries/ffmpeg",
"binaries/ffprobe"
],
"resources": {
"fonts/*": "fonts/"
},
"icon": [
"icons/icon.png",
"icons/icon.icns",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/32x32.png",
"icons/icon.ico"
],
"macOS": {
"minimumSystemVersion": "13.0",
"infoPlist": "Info.plist",
"dmg": {
"background": "dmg-background.png",
"windowSize": {
"width": 660,
"height": 400
},
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
}
}
},
"windows": {
"nsis": {
"languages": [
"SimpChinese"
],
"displayLanguageSelector": false,
"installMode": "perMachine"
}
}
}
}