From 4f0684dd041bb9caa995211d49fc16ab125eaec2 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sat, 25 Apr 2026 00:26:50 +0800 Subject: [PATCH] # Release version 0.10.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix(chat-input): raise toolbar collapse threshold to 34rem so selectors stay visible at wider input widths. - fix(acp): prevent Windows terminal hangs caused by orphaned pipes and .cmd shims. - fix(acp): fix context loss when resuming a historical conversation by deferring auto-connect until the session id resolves. - fix(sidebar): clarify empty state when completed conversations are hidden. - chore(acp): bump claude-code to 0.31.0, codex to 0.12.0, opencode to 1.14.23, gemini to 0.39.1. ----------------------------- # 发布版本 0.10.3 - 修复(聊天输入):将工具栏折叠阈值提升到 34rem,更宽的输入区仍能保留选择器; - 修复(ACP):修复 Windows 下因管道残留与 .cmd shim 导致的终端挂起; - 修复(ACP):修复在历史会话中继续对话时偶发的上下文丢失问题,自动连接会等待历史会话 id 解析完成后再发起; - 修复(侧边栏):在隐藏已完成会话时显示更清晰的空态提示; - 杂项(ACP):升级 claude-code 至 0.31.0、codex 至 0.12.0、opencode 至 1.14.23、gemini 至 0.39.1。 --- 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 6083135..3201e50 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.10.2", + "version": "0.10.3", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d717d3d..5d908ba 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.10.2" +version = "0.10.3" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 234a1c5..3b44942 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.10.2" +version = "0.10.3" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 37eb7ac..38f2f0d 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.2", + "version": "0.10.3", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",