From c1158bf66905f855b20d4808ee1a76a453aafaff Mon Sep 17 00:00:00 2001 From: xintaofei Date: Fri, 3 Apr 2026 14:40:14 +0800 Subject: [PATCH] # Release version 0.6.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New @ file mention support in chat and fixes for terminal and Docker stability. - feat: add @ file mention support in chat input and unify directory attachment. - fix: update run button state when terminal tab is closed directly. - fix: fix terminal not opening in Docker and slim down Docker image. ----------------------------- # 发布版本 0.6.6 新增聊天输入框 @ 文件提及功能,并修复终端与 Docker 稳定性问题。 - 新增:聊天输入框支持 @ 文件提及,并统一目录附件处理逻辑; - 修复:终端标签页直接关闭时正确更新运行按钮状态; - 修复:修复 Docker 环境下终端无法打开的问题,并精简 Docker 镜像。 --- 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 f319c52..1898f99 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.5", + "version": "0.6.6", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 747c938..946652f 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.5" +version = "0.6.6" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 1318743..c2e209b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.5" +version = "0.6.6" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f16abb1..53dbd13 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.5", + "version": "0.6.6", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",