From 527dfc48d62b8f1b98261f95d3cb8f903252c08b Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sat, 18 Apr 2026 23:53:53 +0800 Subject: [PATCH] # Release version 0.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix(git): restore non-repo fallback and refine repo preflight errors. - perf(workspace-state): tighten watch debounce to 1s and max batch window to 3s. - fix(git): surface non-git-repo as a typed error and align all panels via workspace state. - fix(web-auth): url-decode token query param for websocket auth. - fix(chat-channel): use session agent in responding indicator and localize command messages. ----------------------------- # 发布版本 0.9.3 - 修复(Git):恢复非仓库目录的回退逻辑,并细化仓库预检错误提示; - 性能(工作区状态):将监听去抖收紧至 1 秒,最大批处理窗口收紧至 3 秒; - 修复(Git):将非 Git 仓库作为类型化错误上报,并让各面板统一通过工作区状态对齐; - 修复(Web 认证):对 WebSocket 认证所用 token 查询参数进行 URL 解码; - 修复(聊天频道):在响应中指示器里使用当前会话的 Agent,并对指令消息进行本地化。 --- 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 bb5c055..7ff29e0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.9.2", + "version": "0.9.3", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index ae0dbbe..4b51fe8 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.9.2" +version = "0.9.3" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6c9dba2..52b366e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.9.2" +version = "0.9.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 1a4d07f..2016e80 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.9.2", + "version": "0.9.3", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",