From d81d76443da102720cbcc62e1b83ec4e0eab68ab Mon Sep 17 00:00:00 2001 From: xintaofei Date: Wed, 15 Apr 2026 16:58:12 +0800 Subject: [PATCH] # Release version 0.8.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 配置项,保留用户所选的配置值。 --- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 98304ca..db82f58 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.6", + "version": "0.8.7", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5f63bb8..d4226a8 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.6" +version = "0.8.7" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a0a5aeb..3ed6b0e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.6" +version = "0.8.7" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6ff0632..248b5f2 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "codeg", - "version": "0.8.6", + "version": "0.8.7", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",