# Release version 0.10.0
- feat(workspace): migrate from per-folder windows to a unified single-window workspace. - feat(sidebar): overhaul sidebar with draggable folder reorder, per-folder new/import actions, conversation sort toggle, completed filter, and bulk-action management dialog. - feat(acp-agent-settings): expand OpenCode provider.npm options with additional AI SDK providers. - fix(transport): replace Tauri listen() to avoid unlisten race crashing on WKWebView. ----------------------------- # 发布版本 0.10.0 - 新增(工作区):从每文件夹独立窗口迁移到统一的单窗口工作区; - 新增(侧边栏):全面重构,支持拖拽排序文件夹组、按文件夹新建/导入会话、会话排序切换、已完成筛选,以及带批量操作的会话管理对话框; - 新增(ACP 代理设置):扩展 OpenCode 的 provider.npm 选项,补全更多 AI SDK 提供商; - 修复(传输层):替换 Tauri listen() 调用,避免 WKWebView 下 unlisten 竞态导致崩溃。
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "codeg",
|
"name": "codeg",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.9.5",
|
"version": "0.10.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbopack",
|
"dev": "next dev --turbopack",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
|||||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "codeg"
|
name = "codeg"
|
||||||
version = "0.9.5"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"agent-client-protocol-schema",
|
"agent-client-protocol-schema",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "codeg"
|
name = "codeg"
|
||||||
version = "0.9.5"
|
version = "0.10.0"
|
||||||
description = "Agent Code Generation App"
|
description = "Agent Code Generation App"
|
||||||
authors = ["feitao"]
|
authors = ["feitao"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "codeg",
|
"productName": "codeg",
|
||||||
"version": "0.9.5",
|
"version": "0.10.0",
|
||||||
"identifier": "app.codeg",
|
"identifier": "app.codeg",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user