From c5c2bdd331df98d8e24d8e53af7176b0664b5675 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sat, 18 Apr 2026 12:03:07 +0800 Subject: [PATCH] # Release version 0.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(web-service): allow custom access token with persisted port and localized start errors. - feat(conversation): add copy text context menu action with preserved selection. - feat(status-bar): compact large token counts with K/M units in usage popover. - feat(chat-channel): annotate Weixin channel badge with iLink reconnect hint tooltip. - fix(chat-channel): detect Weixin auth failure via errcode during connect verification. - chore(acp): bump claude-agent-acp to 0.29.2, opencode to 1.4.11, gemini-cli to 0.38.2, openclaw to 2026.4.15 and cline to 2.15.0. ----------------------------- # 发布版本 0.9.1 - 功能(Web 服务):支持自定义访问令牌,持久化端口配置并本地化启动错误提示; - 功能(会话):新增复制文本右键菜单操作,复制时保留原有文本选区; - 功能(状态栏):在用量弹窗中使用 K/M 单位紧凑显示较大的 token 数值; - 功能(聊天频道):为微信频道徽标添加 iLink 重连提示 tooltip; - 修复(聊天频道):通过 errcode 识别连接校验阶段的微信鉴权失败; - 杂项(ACP):升级 claude-agent-acp 到 0.29.2,升级 opencode 到 1.4.11,升级 gemini-cli 到 0.38.2,升级 openclaw 到 2026.4.15,升级 cline 到 2.15.0。 --- 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 f8b4456..527c320 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.9.0", + "version": "0.9.1", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 10e8c14..900989a 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.9.0" +version = "0.9.1" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 81746ae..c0c2944 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.9.0" +version = "0.9.1" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index ad60942..2d098ba 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.0", + "version": "0.9.1", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",