- feat(settings): render update release notes as markdown. - refactor(message): shrink agent card max height and localize running indicator with spinner. - fix(settings): use randomUUID helper with getRandomValues fallback for non-secure contexts. - fix(workspace-state): keep git-presence flag and branch poll in sync with runtime state. - fix(workspace-state): stop resync loop on non-git folders and allow retry for degraded watcher. ----------------------------- # 发布版本 0.9.2 - 功能(设置):更新提示中的发布说明以 Markdown 格式渲染; - 重构(消息):缩小 Agent 卡片最大高度,并本地化运行中指示器,配合 spinner 展示; - 修复(设置):使用 randomUUID 助手函数,在非安全上下文中回退到 getRandomValues; - 修复(工作区状态):保持 git 存在标识与分支轮询结果同步于运行时状态; - 修复(工作区状态):在非 git 文件夹停止重复同步循环,并允许降级的 watcher 重试。
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "codeg",
|
|
"version": "0.9.2",
|
|
"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"
|
|
],
|
|
"resources": {
|
|
"../out": "web/"
|
|
}
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQ4OEM3NkMyMTVENjdBODgKUldTSWV0WVZ3bmFNU0NnSzhpdFg2bXFmMHFidWd1eWpuZ2Y2WmU5QmVXdWVrU0ZpOCt2dnd6WW4K",
|
|
"endpoints": [
|
|
"https://github.com/xintaofei/codeg/releases/latest/download/latest.json"
|
|
],
|
|
"windows": {
|
|
"installMode": "passive"
|
|
}
|
|
}
|
|
}
|
|
}
|