From af1ca868f7d94cad1411ca157907ff4500654e0e Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sat, 25 Apr 2026 21:38:24 +0800 Subject: [PATCH] # Release version 0.10.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(settings): add a Windows toggle to disable WebView2 hardware acceleration, helping users work around white-screen and rendering glitches on certain GPUs. - fix(acp): uninstall before reinstall when upgrading npx-managed agents to avoid stale binaries. - fix(acp): bypass Windows file locks when clearing the binary cache so re-installation no longer fails. - fix(acp): dedupe slash command results at the session update mapping layer to prevent duplicated entries in the slash menu. Thanks to @MoozLee for contributing this fix in #111. ----------------------------- # 发布版本 0.10.4 - 新增(设置):Windows 端新增禁用 WebView2 硬件加速的开关,便于规避部分显卡导致的白屏与渲染异常; - 修复(ACP):通过 npx 升级代理时先卸载再安装,避免残留旧版本二进制; - 修复(ACP):清理二进制缓存时绕过 Windows 文件锁,避免重新安装失败; - 修复(ACP):在会话更新映射阶段对斜杠命令结果去重,消除斜杠菜单中的重复项。感谢 @MoozLee 在 #111 中贡献此修复。 --- 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 3201e50..4413207 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.10.3", + "version": "0.10.4", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5d908ba..87ce5a4 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.10.3" +version = "0.10.4" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3b44942..31a16a1 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.10.3" +version = "0.10.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 38f2f0d..fc22018 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.10.3", + "version": "0.10.4", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",