From 4c9603738539135bbff75fe1c2816205d0c104be Mon Sep 17 00:00:00 2001 From: xintaofei Date: Wed, 11 Mar 2026 15:25:50 +0800 Subject: [PATCH] Release version 0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 会话支持平铺模式显示(会话区可以同时显示多个进行中的话,并支持同时对话) 修复切换到新会话后,底部状态栏的上下文信息未清理 升级Claude Code和OpenCode的SDK版本 会话实时活动区域显示Agent图标 --- 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 3b8645e..5b05a87 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.1.0", + "version": "0.1.1", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index e6b6f41..0394472 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -792,7 +792,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.1.0" +version = "0.1.1" dependencies = [ "agent-client-protocol-schema", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index dd48298..caa96de 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.1.0" +version = "0.1.1" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9c3e7a4..92396e7 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.0", + "version": "0.1.1", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",