# Release version 0.8.6

- 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):降低深色模式下窗口打开时的白屏闪烁。
This commit is contained in:
xintaofei
2026-04-14 23:39:04 +08:00
parent 98fc75e585
commit 11b6a4f051
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "codeg", "name": "codeg",
"private": true, "private": true,
"version": "0.8.5", "version": "0.8.6",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",

2
src-tauri/Cargo.lock generated
View File

@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
[[package]] [[package]]
name = "codeg" name = "codeg"
version = "0.8.5" version = "0.8.6"
dependencies = [ dependencies = [
"agent-client-protocol-schema", "agent-client-protocol-schema",
"async-trait", "async-trait",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "codeg" name = "codeg"
version = "0.8.5" version = "0.8.6"
description = "Agent Code Generation App" description = "Agent Code Generation App"
authors = ["feitao"] authors = ["feitao"]
edition = "2021" edition = "2021"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "codeg", "productName": "codeg",
"version": "0.8.5", "version": "0.8.6",
"identifier": "app.codeg", "identifier": "app.codeg",
"build": { "build": {
"beforeDevCommand": "pnpm dev", "beforeDevCommand": "pnpm dev",