From 8dad03676b8af3560d62fcd6c4b24c17b93f717a Mon Sep 17 00:00:00 2001 From: xintaofei Date: Mon, 13 Apr 2026 23:41:52 +0800 Subject: [PATCH] # Release version 0.8.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - perf(frontend): optimize ACP tool call output handling to reduce CPU and memory pressure. - perf(file-watch): increase debounce and batch window to reduce event pressure. - fix(windows): normalize Windows file paths with leading slash and add i18n to link safety dialog. - fix(macos): detect untracked file deletion via Finder as remove event. - fix(macos): update traffic-light Y position. ----------------------------- # 发布版本 0.8.5 - 性能(前端):优化 ACP 工具调用输出处理,降低 CPU 和内存压力; - 性能(文件监听):增大防抖和批处理窗口,减少事件压力; - 修复(Windows):规范化 Windows 文件路径前导斜杠,并为链接安全对话框添加国际化支持; - 修复(macOS):检测通过 Finder 删除的未追踪文件并正确触发移除事件; - 修复(macOS):更新红绿灯按钮 Y 轴位置。 --- 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 293af0e..b81ab35 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.4", + "version": "0.8.5", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 1799da5..6262ea8 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.4" +version = "0.8.5" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 778bf06..5686cc6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.4" +version = "0.8.5" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0cab2be..e4e0783 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.4", + "version": "0.8.5", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",