- feat(skills): support folder-scoped skills in agent sessions so workflows defined in a project folder can be invoked directly from chat. - feat(folder): add "Add to session" actions in the file changes menus to quickly reference modified files from the chat input. - feat(folder): add a commit reset action in the Git log panel for rolling back to a selected commit. - fix(folder): prevent the branch submenu from being clipped inside scroll areas. - feat(settings): add a reasoning effort level option for Claude Code. - feat(settings): add an Enable Fast toggle for the Codex service tier. - feat(settings): use overlay scrollbars for sub-page scroll areas to keep the layout stable. - fix(acp): stop stripping the auto config option for Claude Code so the chosen value is preserved. ----------------------------- # 发布版本 0.8.7 - 功能(技能):支持在代理会话中使用文件夹级别的技能,使项目目录内定义的工作流可直接在聊天中调用; - 功能(文件夹):在文件变更菜单中新增"加入会话"操作,便于快速将修改的文件引用到聊天输入; - 功能(文件夹):在 Git 日志面板中新增提交回滚(reset)操作,可一键回退到所选提交; - 修复(文件夹):避免分支子菜单在滚动区域内被裁剪; - 功能(设置):为 Claude Code 增加推理强度(reasoning effort)等级选项; - 功能(设置):为 Codex 服务档位增加 Enable Fast 开关; - 功能(设置):子页面滚动区域改用覆盖式滚动条,避免布局抖动; - 修复(ACP):不再丢弃 Claude Code 的 auto 配置项,保留用户所选的配置值。
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "codeg",
|
|
"version": "0.8.7",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|