From 7fab5d4ac1bdcfc9ff60481402880a9756c0b92c Mon Sep 17 00:00:00 2001 From: xintaofei Date: Fri, 13 Mar 2026 00:14:42 +0800 Subject: [PATCH] Release version 0.1.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 支持自定义消息发送和消息换行的快捷键 修复agent执行命令可能会残留子进程 继续重构会话消息处理逻辑(简化消息处理逻辑,提升性能) 升级Gemini CLI的SDK版本 修复git仓库初始化功能 添加缺失的agent图标,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/9 完善 Gemini CLI 会话扫描目录,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/10 支持按模型名搜索会话,感谢 @hsqbyte https://github.com/xintaofei/codeg/pull/10 支持在会话实时响应时添加消息到队列 --- 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 e394381..22f69ca 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.1.2", + "version": "0.1.3", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index dd2dbfc..9dcbeee 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -792,7 +792,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.1.2" +version = "0.1.3" dependencies = [ "agent-client-protocol-schema", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0c194f3..39740ff 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.1.2" +version = "0.1.3" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5fe19c0..2d7c8f0 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.1.2", + "version": "0.1.3", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",