From e87f930ec1904d59e4b6bb5aba070f040111632b Mon Sep 17 00:00:00 2001 From: xintaofei Date: Thu, 2 Apr 2026 19:35:35 +0800 Subject: [PATCH] # Release version 0.6.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug fixes for terminal stability — fixed run button state synchronization and UUID generation in non-secure contexts. - fix: sync run button state with terminal process via centralized exit tracking. - fix: use randomUUID fallback for non-secure contexts in terminal-context. ----------------------------- # 发布版本 0.6.5 终端稳定性修复 — 修复了运行按钮状态同步问题及非安全上下文中的 UUID 生成问题。 - 修复:通过集中式退出追踪机制同步运行按钮与终端进程状态; - 修复:在非安全上下文中为 terminal-context 添加 randomUUID 回退方案。 --- 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 cdc8184..f319c52 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.4", + "version": "0.6.5", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index cbb8512..747c938 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.4" +version = "0.6.5" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0793fd7..1318743 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.4" +version = "0.6.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 681ba02..f16abb1 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.6.4", + "version": "0.6.5", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",