From 46764ee53cee0b62d542f7275f31a8591bbdb4f6 Mon Sep 17 00:00:00 2001 From: xintaofei Date: Fri, 24 Apr 2026 00:38:33 +0800 Subject: [PATCH] # Release version 0.10.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - feat(sidebar): add per-folder color swatch with color picker and neutral conversation rail. - feat(conversation-context-bar): unify selectors and attachments into a horizontal scrolling row. - fix(conversation-context-bar): hide selectors divider when no attachments are present. - fix(conversation-manage-dialog): sort conversations by created_at and display creation time. - fix(icons): regenerate multi-resolution Windows ICO for crisp desktop icon. - chore(acp-registry): bump opencode to 1.14.21 and gemini-cli to 0.39.0. ----------------------------- # 发布版本 0.10.1 - 新增(侧边栏):为每个文件夹添加颜色色块与颜色选择器,会话轨道采用中性色; - 新增(会话上下文栏):将选择器与附件统一为横向滚动行; - 修复(会话上下文栏):无附件时隐藏选择器分隔线; - 修复(会话管理对话框):按 created_at 排序会话并显示创建时间; - 修复(图标):重新生成多分辨率 Windows ICO 以获得清晰的桌面图标; - 依赖(ACP 注册表):升级 opencode 至 1.14.21、gemini-cli 至 0.39.0。 --- 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 28eaa87..8775dfc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codeg", "private": true, - "version": "0.10.0", + "version": "0.10.1", "scripts": { "dev": "next dev --turbopack", "build": "next build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b5c276e..c56d1ef 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "codeg" -version = "0.10.0" +version = "0.10.1" dependencies = [ "agent-client-protocol-schema", "async-trait", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8e255f3..e0e21fd 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeg" -version = "0.10.0" +version = "0.10.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 388680f..aad8331 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.0", + "version": "0.10.1", "identifier": "app.codeg", "build": { "beforeDevCommand": "pnpm dev",