# Release version 0.10.4

- 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 中贡献此修复。
This commit is contained in:
xintaofei
2026-04-25 21:38:24 +08:00
parent 7699b1a58c
commit af1ca868f7
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "codeg", "name": "codeg",
"private": true, "private": true,
"version": "0.10.3", "version": "0.10.4",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",

2
src-tauri/Cargo.lock generated
View File

@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
[[package]] [[package]]
name = "codeg" name = "codeg"
version = "0.10.3" version = "0.10.4"
dependencies = [ dependencies = [
"agent-client-protocol-schema", "agent-client-protocol-schema",
"async-trait", "async-trait",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "codeg" name = "codeg"
version = "0.10.3" version = "0.10.4"
description = "Agent Code Generation App" description = "Agent Code Generation App"
authors = ["feitao"] authors = ["feitao"]
edition = "2021" edition = "2021"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "codeg", "productName": "codeg",
"version": "0.10.3", "version": "0.10.4",
"identifier": "app.codeg", "identifier": "app.codeg",
"build": { "build": {
"beforeDevCommand": "pnpm dev", "beforeDevCommand": "pnpm dev",