From 382d6e50a3bb24b47295bfe95d48ec5916e9204d Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sun, 22 Mar 2026 13:22:14 +0800 Subject: [PATCH] Release version 0.2.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 设计了应用图标,现在不显示为tauri的默认图标了; 优化会话列表显示,现在改为虚拟渲染,在会话较多时性能提升明显。 --- 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 f4a5af9..a8f6469 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.2.8", + "version": "0.2.9", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 41db101..370407f 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -792,7 +792,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.2.8" +version = "0.2.9" dependencies = [ "agent-client-protocol-schema", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bee70c1..b0cec41 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.2.8" +version = "0.2.9" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1884cb9..a4ef7da 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.2.8", + "version": "0.2.9", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",