From dcaa4b4f5a055124c676a744a601d8e809c8d16a Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sat, 18 Apr 2026 18:55:26 +0800 Subject: [PATCH] # Release version 0.9.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(settings): render update release notes as markdown. - refactor(message): shrink agent card max height and localize running indicator with spinner. - fix(settings): use randomUUID helper with getRandomValues fallback for non-secure contexts. - fix(workspace-state): keep git-presence flag and branch poll in sync with runtime state. - fix(workspace-state): stop resync loop on non-git folders and allow retry for degraded watcher. ----------------------------- # 发布版本 0.9.2 - 功能(设置):更新提示中的发布说明以 Markdown 格式渲染; - 重构(消息):缩小 Agent 卡片最大高度,并本地化运行中指示器,配合 spinner 展示; - 修复(设置):使用 randomUUID 助手函数,在非安全上下文中回退到 getRandomValues; - 修复(工作区状态):保持 git 存在标识与分支轮询结果同步于运行时状态; - 修复(工作区状态):在非 git 文件夹停止重复同步循环,并允许降级的 watcher 重试。 --- 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 527c320..bb5c055 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.9.1", + "version": "0.9.2", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 900989a..ae0dbbe 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.9.1" +version = "0.9.2" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c0c2944..6c9dba2 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.9.1" +version = "0.9.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 2d098ba..1a4d07f 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.1", + "version": "0.9.2", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",