- 新增 config.json 配置文件,定义游戏名称、存档名、可执行文件路径等 - 在 tauri.conf.json 中为 Windows 平台添加 WiX 安装程序语言设置 - 移除旧的资源文件引用,精简打包配置结构 - 统一图标资源路径配置,支持多尺寸图标- 设置默认安装目录和快捷方式名称,优化用户体验
8 lines
254 B
JSON
8 lines
254 B
JSON
{
|
|
"game_name": "逃离鸭科夫",
|
|
"archive_name": "game_files.zip",
|
|
"executable_path": "bin/game_launcher.exe",
|
|
"default_install_dir_name": "My Awesome Game",
|
|
"shortcut_name": "启动 My Awesome Game",
|
|
"shortcut_icon_path": "assets/game_icon.ico"
|
|
} |