From 4277f88ca8816baa913268cf2a9c0fa4bb5edfde Mon Sep 17 00:00:00 2001 From: xintaofei Date: Thu, 9 Apr 2026 19:00:44 +0800 Subject: [PATCH] # Release version 0.6.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix(ui): add flex container to sidebar wrapper to enable conversation list scrolling. - fix(ui): add max-height limit to commit message textarea. - fix(ui): unify scrollbar styles across scrollable containers. --- # 发布版本 0.6.12 - 修复(UI):为侧边栏添加 flex 容器,修复会话列表无法滚动的问题; - 修复(UI):为提交消息文本框添加最大高度限制; - 修复(UI):统一各滚动容器的滚动条样式; --- 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 abe3e42..bc85dd9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.11", + "version": "0.6.12", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index abae88c..2562dad 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.11" +version = "0.6.12" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bd99826..b862c0e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.11" +version = "0.6.12" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 192496d..70e4d8f 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.11", + "version": "0.6.12", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",