From 10801bf3934bce48ddc9f48a4dedf1743d803d0c Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sun, 19 Apr 2026 09:32:26 +0800 Subject: [PATCH] # Release version 0.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(terminal): add word/line cursor shortcuts for shell line-editing. - feat(appearance): apply UI zoom level to terminal and Monaco editors. - fix(settings): move content padding inside scroll areas to keep inner borders visible. - refactor(git-error): drop locale-specific not-a-repo patterns. - fix(process): apply C.UTF-8 locale across platforms for child processes. ----------------------------- # 发布版本 0.9.4 - 新增(终端):新增按词/按行光标移动的快捷键,优化 Shell 行编辑体验; - 新增(外观):将界面缩放级别应用到终端和 Monaco 编辑器; - 修复(设置):将内容内边距移入滚动区域内部,保证内部边框完整可见; - 重构(Git 错误):移除特定语言区域的"非 Git 仓库"匹配模式; - 修复(进程):在各平台子进程中统一使用 C.UTF-8 locale。 --- 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 7ff29e0..50b8080 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.9.3", + "version": "0.9.4", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 4b51fe8..27b3d5b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.9.3" +version = "0.9.4" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 52b366e..b8b1d8d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.9.3" +version = "0.9.4" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2016e80..6c2b6cb 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.9.3", + "version": "0.9.4", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",