Files
codeg/src-tauri/tauri.conf.json
xintaofei 17aeb264f9 Release version 0.1.8
支持从历史会话中分叉出单独的新会话;
编辑器资源本地化(支持内网);
支持Codex CLI的官网订阅设置;
修复.gitignore子目录/子文件着色问题;
删除分支时,如果提示分支未合并完成,支持强制删除,而不是永远无法删除。
2026-03-15 19:34:42 +08:00

42 lines
1003 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "codeg",
"version": "0.1.8",
"identifier": "app.codeg",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../out"
},
"app": {
"windows": [],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQ4OEM3NkMyMTVENjdBODgKUldTSWV0WVZ3bmFNU0NnSzhpdFg2bXFmMHFidWd1eWpuZ2Y2WmU5QmVXdWVrU0ZpOCt2dnd6WW4K",
"endpoints": [
"https://github.com/xintaofei/codeg/releases/latest/download/latest.json"
],
"windows": {
"installMode": "passive"
}
}
}
}