Files
tms_tools/src-tauri/tauri.conf.json
Yakumo Hokori 7bd5607ff8 修复版本号和构建配置:更新至0.1.7并优化GitHub Actions
- 移除淘宝镜像源,使用官方源
- 更新 tauri.conf.json 版本至 0.1.7
- 更新 Cargo.toml 版本至 0.1.7
- 确保发布产物名称正确显示为 tms_tools_0.1.7

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-27 22:01:19 +08:00

36 lines
688 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "tms_tools",
"version": "0.1.7",
"identifier": "com.tms-tools.app",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "tms_tools",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}