From 11b6a4f051f69adbbfc4d0edee54842e7841205e Mon Sep 17 00:00:00 2001 From: xintaofei Date: Tue, 14 Apr 2026 23:39:04 +0800 Subject: [PATCH] # Release version 0.8.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(folder): improve folder workspace stability by unifying state streaming for the file tree and Git panels. - fix(folder): prevent stale file-watch subscriptions in aux panels and keep mobile sidebars closed on initial load. - fix(folder): add conversation actions to the sidebar blank-space context menu and align the file workspace tab bar height. - feat(acp): send a system notification when an agent requests permission approval while the app window is not visible. - feat(acp): surface Claude API retry status in the chat input with localized progress and error details. - perf(chat): reduce unnecessary rerenders in the conversation input area. - fix(windows,linux): reduce the white flash when opening the window in dark mode. ----------------------------- # 发布版本 0.8.6 - 功能(文件夹):统一文件树与 Git 面板的状态流,提升文件夹工作区的更新一致性和整体稳定性; - 修复(文件夹):避免辅助面板出现陈旧的文件监听订阅,并防止移动端首次进入时侧边栏自动展开; - 修复(文件夹):为空白区域的会话侧边栏补充右键操作,并对齐文件工作区标签栏高度; - 功能(ACP):当应用窗口不可见且代理发起权限审批请求时,发送系统通知; - 功能(ACP):在聊天输入区展示 Claude API 重试状态,并提供本地化的重试进度与错误信息; - 性能(聊天):减少会话输入区域的不必要重复渲染; - 修复(Windows/Linux):降低深色模式下窗口打开时的白屏闪烁。 --- 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 b81ab35..98304ca 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.5", + "version": "0.8.6", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 6262ea8..5f63bb8 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.5" +version = "0.8.6" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5686cc6..a0a5aeb 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.5" +version = "0.8.6" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e4e0783..6ff0632 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.5", + "version": "0.8.6", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",