From 8fefad14d43af3d2df6f466707216932f3d74fe2 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Mon, 13 Apr 2026 12:46:47 +0800 Subject: [PATCH] # Release version 0.8.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix(frontend): fix find widget tooltip flicker, clipping, and close button alignment. - fix(frontend,macos): reduce dark mode white flash on window open. - fix(macos): persist zoom level to DB so traffic lights use correct position on launch. - fix(macos): adjust traffic-light Y baseline from 18 to 17 for better vertical alignment. - fix(i18n): add ellipsis to reasoning thinking label across all locales. ----------------------------- # 发布版本 0.8.3 - 修复(前端):修复查找组件工具提示闪烁、裁剪及关闭按钮对齐问题; - 修复(前端,macOS):减少暗色模式下窗口打开时的白色闪烁; - 修复(macOS):将缩放级别持久化到数据库,确保红绿灯按钮在启动时使用正确位置; - 修复(macOS):将红绿灯按钮 Y 轴基线从 18 调整为 17,优化垂直对齐; - 修复(i18n):为所有语言的推理思考标签添加省略号。 --- 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 aae307b..a60ef97 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.2", + "version": "0.8.3", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 410b1ef..90d514b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.2" +version = "0.8.3" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 52adde3..9ba75f6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.2" +version = "0.8.3" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4c391a1..55275f0 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.8.2", + "version": "0.8.3", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",