# Release version 0.9.1

- 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。
This commit is contained in:
xintaofei
2026-04-18 12:03:07 +08:00
parent 6e477661f8
commit c5c2bdd331
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "codeg", "name": "codeg",
"private": true, "private": true,
"version": "0.9.0", "version": "0.9.1",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",

2
src-tauri/Cargo.lock generated
View File

@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
[[package]] [[package]]
name = "codeg" name = "codeg"
version = "0.9.0" version = "0.9.1"
dependencies = [ dependencies = [
"agent-client-protocol-schema", "agent-client-protocol-schema",
"async-trait", "async-trait",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "codeg" name = "codeg"
version = "0.9.0" version = "0.9.1"
description = "Agent Code Generation App" description = "Agent Code Generation App"
authors = ["feitao"] authors = ["feitao"]
edition = "2021" edition = "2021"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "codeg", "productName": "codeg",
"version": "0.9.0", "version": "0.9.1",
"identifier": "app.codeg", "identifier": "app.codeg",
"build": { "build": {
"beforeDevCommand": "pnpm dev", "beforeDevCommand": "pnpm dev",