de7a6b734f
- 统一版本号管理(VERSION + scripts/bump-version.py) - 添加 GitLab CI/CD 前端多平台构建配置 - 替换应用图标为品牌 logo - 清理无效文件(tauri.svg, vite.svg, bg-config.json, audio/presets, .DS_Store) - 修复 ESLint 错误和全部 warnings - 清理 console.warn,保留 console.error - 更新 Cargo.toml 元数据(description + authors) - 更新 .gitignore(dist/, src-tauri/target/, binaries/) - authStore appVersion 改为动态获取(getVersion) - 修复 login 错误处理 - 将 FFmpeg sidecar 二进制移出 Git 跟踪(CI 构建时准备)
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "美家卡智影",
|
|
"version": "1.5.15",
|
|
"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": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' https: data: blob: asset:; media-src 'self' https: blob: asset:; connect-src 'self' https: ws://localhost:*;",
|
|
"capabilities": [
|
|
"default"
|
|
],
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": [
|
|
"$APPLOCALDATA/**",
|
|
"$APPDATA/**",
|
|
"$APPCONFIG/**",
|
|
"/**"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"opener": {}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"externalBin": [
|
|
"binaries/ffmpeg",
|
|
"binaries/ffprobe"
|
|
],
|
|
"resources": {
|
|
"fonts/*": "fonts/"
|
|
},
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"macOS": {
|
|
"minimumSystemVersion": "13.0",
|
|
"infoPlist": "Info.plist"
|
|
},
|
|
"windows": {
|
|
"nsis": {
|
|
"languages": [
|
|
"SimpChinese"
|
|
],
|
|
"displayLanguageSelector": false
|
|
}
|
|
}
|
|
}
|
|
}
|