From 576944ac1f73c2c1fb8e89c6f94674e48ba18116 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Fri, 3 Apr 2026 23:47:51 +0800 Subject: [PATCH] # Release version 0.6.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat: add export conversation to image, markdown, and HTML formats. - feat: add copy button on hover for user messages in conversation. - feat: add favicon for web/server mode browser tabs. - chore: upgrade sacp to 11.0.0 stable and agent-client-protocol-schema to 0.11. - chore: bump ACP agent SDK versions in registry. ----------------------------- # 发布版本 0.6.7 - 新增:支持将会话导出为图片、Markdown 和 HTML 格式; - 新增:用户消息悬停时显示复制按钮; - 新增:Web/服务器模式浏览器标签页显示 favicon; - 升级:sacp 升级至 11.0.0 稳定版,agent-client-protocol-schema 升级至 0.11; - 升级:更新注册表中 ACP agent SDK 版本。 --- 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 abc8092..569d367 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.6", + "version": "0.6.7", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d959135..14b64bf 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.6" +version = "0.6.7" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 9f9089a..a604997 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.6" +version = "0.6.7" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 53dbd13..666daf1 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.6", + "version": "0.6.7", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",