From 883fb64db0689ed0f0dabaa2b3fa6bafe819d8be Mon Sep 17 00:00:00 2001 From: xintaofei Date: Sun, 12 Apr 2026 14:08:50 +0800 Subject: [PATCH] # Release version 0.8.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(acp): add opencode plugin management — detect, install, uninstall plugins via preflight UI. - feat(frontend): add OpencodePluginsModal with streaming install progress. - feat(i18n): add opencode plugin management translations for 10 languages. - fix(acp): use XDG paths for opencode config/cache instead of platform-native dirs. - fix(acp): pin @latest plugin specs to installed versions and enable button when only floating versions exist. - fix(acp): avoid false-positive comment detection on URLs in opencode.json. - fix(acp): harden session-page connection and localize backend errors. - fix(experts): handle Windows junction removal when unlinking skill entries. - fix(frontend): remove explicit primary color from input bar controls. ----------------------------- # 发布版本 0.8.1 - 新增(acp):添加 opencode 插件管理 —— 通过预检 UI 检测、安装、卸载插件; - 新增(前端):添加 OpencodePluginsModal 组件,支持流式安装进度展示; - 新增(i18n):为 opencode 插件管理添加 10 种语言翻译; - 修复(acp):opencode 配置/缓存使用 XDG 路径而非平台原生目录; - 修复(acp):将 @latest 浮动版本的插件规格固定为实际安装版本,并在仅有浮动版本时启用按钮; - 修复(acp):避免对 opencode.json 中的 URL 误判为注释; - 修复(acp):加固会话-页面连接并本地化后端错误信息; - 修复(experts):处理 Windows 下取消技能条目链接时的 junction 移除问题; - 修复(前端):移除输入栏控件的显式主色调。 --- 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 d4b9e52..d1bc20c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.8.0", + "version": "0.8.1", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 4156ab1..6b62e8e 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.8.0" +version = "0.8.1" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 25cc1c5..e555c47 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.8.0" +version = "0.8.1" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d81aef8..ef49dd9 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.0", + "version": "0.8.1", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",