From ef94687c877e1b646a8a6144c73ac5788c132f40 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Thu, 2 Apr 2026 16:50:27 +0800 Subject: [PATCH] # Release version 0.6.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WeChat channel support — connect your WeChat account via QR code scan, then interact with agents directly from WeChat. All session commands (/folder, /agent, /task, etc.) work seamlessly in WeChat conversations. - feature: supports WeChat channel. - feature: add click-to-preview for image attachments in chat. - feature: add commit and push option to git commit window. - fix: skip rendering img element when src is empty in image preview dialog. - fix: disable macOS overscroll bounce, Thanks to @isYangs https://github.com/xintaofei/codeg/pull/54. - optimize: terminal spawn lifecycle to eliminate output race condition. - optimize: WeChat QR code auth flow and channel reliability. - optimize: WeChat channel message handling and error resilience. ----------------------------- # 发布版本 0.6.4 支持微信消息通道 — 通过扫描二维码连接微信账号,即可直接在微信中与代理交互。所有会话指令(/folder、/agent、/task 等)均可在微信对话中无缝使用。 - 功能:支持微信消息通道; - 功能:聊天中的图片附件支持点击预览; - 功能:Git 提交窗口新增提交并推送选项; - 修复:图片预览对话框中 src 为空时跳过渲染 img 元素; - 修复:禁用 macOS 过度滚动回弹效果,感谢 @isYangs https://github.com/xintaofei/codeg/pull/54; - 优化:终端进程生命周期管理,消除输出竞态条件; - 优化:微信二维码认证流程及通道可靠性; - 优化:微信通道消息处理及错误恢复能力。 --- 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 4c31d44..cdc8184 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.3", + "version": "0.6.4", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 440ca30..cbb8512 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.3" +version = "0.6.4" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d02625f..0793fd7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.3" +version = "0.6.4" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 289ab1c..681ba02 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.3", + "version": "0.6.4", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",