From dd659dcaa5491d9bc11a48cc18ee69618134cd2d Mon Sep 17 00:00:00 2001 From: xintaofei Date: Tue, 7 Apr 2026 13:06:16 +0800 Subject: [PATCH] # Release version 0.6.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat: add model provider management with full CRUD support. - feat: refactor agent auth modes and add model provider authentication. - feat: add model selection combobox for OpenCode agent configuration. - feat: protect model provider deletion and cascade credential updates. - feat: add slash command dropdown button in message input toolbar. - fix: improve error message when exporting long conversations as image. - fix: disable "auto" config option for Claude Code to prevent errors. - fix: improve codex CLI auth mode switching to preserve auth.json keys. - fix: update chat channel icons to Play/Square and SendHorizontal. - chore: bump ACP agent SDK versions in registry. ----------------------------- # 发布版本 0.6.8 - 新增:模型提供商管理,支持完整的增删改查操作; - 新增:重构代理认证模式,新增模型提供商认证支持; - 新增:OpenCode 代理配置增加模型选择下拉框; - 新增:模型提供商删除保护及级联更新凭证; - 新增:消息输入工具栏添加斜杠命令下拉按钮; - 修复:导出长会话为图片时改进错误提示; - 修复:禁用 Claude Code 的 "auto" 配置选项以防止错误; - 修复:Codex CLI 认证模式切换时保留 auth.json 密钥; - 修复:更新聊天频道图标为 Play/Square 和 SendHorizontal; - 升级:更新注册表中 ACP agent SDK 版本。 --- 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 569d367..6f20041 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.6.7", + "version": "0.6.8", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 14b64bf..c321dc6 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.6.7" +version = "0.6.8" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a604997..3157d7c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.6.7" +version = "0.6.8" description = "Agent Code Generation App" authors = ["feitao"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 666daf1..e469fbc 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.6.7", + "version": "0.6.8", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",