Files
game_install_tools/src-tauri/tauri.conf.json
Chaos 6b6c61fd08 feat(installer): 实现游戏安装与快捷方式创建功能- 添加禁用右键菜单和开发者工具的保护机制
- 引入GAME_CONFIG配置文件统一管理游戏信息
- 安装页面支持记录安装路径到localStorage
- 成功页面增加创建桌面快捷方式选项
- 实现调用系统资源管理器打开游戏目录功能
- 集成Windows COM组件创建快捷方式的能力
- 更新UI界面展示多语言标题和版本信息
- 升级daisyui依赖至5.5.2版本- 调整窗口标题和产品名称为"游戏安装工具 - NoPJ"
2025-11-13 23:40:22 +08:00

47 lines
893 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "游戏安装工具 - NoPJ",
"version": "0.1.0",
"identifier": "cn.nopj.gametools",
"build": {
"frontendDist": "../build",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "游戏安装工具 - NoPJ",
"width": 1280,
"height": 720,
"resizable": false,
"fullscreen": false,
"decorations": false,
"devtools": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"windows": {
"wix": {
"language": "zh-CN"
}
},
"icon": [
"icons/logo.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}