From 8d5ec464d93acc7c4024155e7621b371a68db9af Mon Sep 17 00:00:00 2001 From: xintaofei Date: Fri, 24 Apr 2026 19:56:18 +0800 Subject: [PATCH] # Release version 0.10.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(settings): add quick messages management with drag-and-drop sorting and place nav below agents. - feat(message-input): turn plus button into menu with attach files and quick messages entries. - feat(codex-skills): surface built-in .system skills as read-only. - feat(sidebar-conversation-list): show empty-state hint inside expanded folders with no visible conversations. - fix(sidebar): restrict folder reorder drag to the folder header row. - fix(message-input): persist draft across restarts by keying on conversation id. - fix(acp): prevent memory blowup from streaming terminal tool output. - fix(web-server): release port reliably on stop by awaiting graceful shutdown. - fix(experts): recognize Windows junction links to central store. - perf(workspace-state): compress delta history, cache gitignore lookups, and tighten debounce. ----------------------------- # 发布版本 0.10.2 - 新增(设置):新增快捷消息管理,支持拖拽排序,并将入口置于智能体下方; - 新增(消息输入):将加号按钮改为菜单,集成附加文件与快捷消息入口; - 新增(Codex 技能):将内置 .system 技能以只读方式展示; - 新增(侧边栏会话列表):在展开的空文件夹中显示空态提示; - 修复(侧边栏):将文件夹重排拖拽限制在文件夹标题行; - 修复(消息输入):按会话 id 持久化草稿,重启后保留未发送内容; - 修复(ACP):避免流式终端工具输出导致的内存膨胀; - 修复(Web 服务器):停止时等待优雅关闭,确保端口可靠释放; - 修复(专家):识别指向中央仓库的 Windows 联接点(junction link); - 性能(工作区状态):压缩增量历史、缓存 gitignore 查询并收紧防抖。 --- 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 8775dfc..6083135 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.10.1", + "version": "0.10.2", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index c56d1ef..d717d3d 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.10.1" +version = "0.10.2" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e0e21fd..234a1c5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.10.1" +version = "0.10.2" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index aad8331..37eb7ac 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.10.1", + "version": "0.10.2", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",