Files
codeg/src-tauri/tauri.conf.json
xintaofei 06bcb12329 Release version 0.2.11
修复新会话可能泄漏问题;
之前是会话tab激活的会话不被空闲回收,现在改为会话tab所有的会话都不被空闲回收;
修复活跃的对话中会话在关闭会话tab后连接被自动回收了;
新会话默认连接agent列表里面的第一个agent,不再固定使用codex;
修复进行中会话有时无法被取消;
Git推送成功后现在会自动关闭推送窗口。
2026-03-22 23:41:55 +08:00

42 lines
1004 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "codeg",
"version": "0.2.11",
"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"
}
}
}
}