From 925d068bd9198360b6ee7733afefb6a62d740f31 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Wed, 1 Apr 2026 15:02:38 +0800 Subject: [PATCH] Release version 0.6.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: "Add to VCS" dialog displayed files already tracked by Git. optimize: Refined the code submission logic to prevent scenarios where code submission fails. feature: Supports remote branch deletion. fix: resolve real-time update issue in tiled view with multiple active sessions. optimize: session list loading. ------------------------------------------------------- 发布版本 0.6.2 修复:“添加到VCS”的弹框显示了已经被git跟踪的文件; 优化:提交代码的处理逻辑,避免一些情况无法提交代码; 特性:支持删除远程分支; 修复:解决平铺视图下多活跃会话时的实时更新问题; 优化:会话列表加载。 --- 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 47d4df9..624a8ac 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.1", + "version": "0.6.2", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 41a5f93..41ec920 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -847,7 +847,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.1" +version = "0.6.2" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 645bf2b..6fe951e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.1" +version = "0.6.2" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index dc34e11..97a04c0 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.1", + "version": "0.6.2", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",