diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d332a9..d70ee2cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -## [1.12.4] - 2026-06-10 +## [1.12.4] - 2026-06-11 - Chat: added `/handoff-review` to open a linked review session for the current workspace changes, with actions to send review feedback and implementation replies between the sessions. +- Chat/UI: added a setting to collapse long user messages. +- Chat: `@agent` mentions in rendered messages now use the primary accent color. - Chat: table copy actions now include a Markdown format option (thanks to @kjhq). - Chat: Mermaid diagrams can now be opened in a dedicated diagram editor (thanks to @nerdosaurus). +- Models: hidden models now stay hidden in multi-model selection controls (thanks to @kjhq). - Worktrees: creating a single new worktree session now opens the session immediately while worktree setup continues in the background. - Multi-Run: creating isolated runs now opens sessions immediately while worktree setup continues in the background. - Sessions: chat folder assignments now stay in place after reloads. @@ -23,9 +26,13 @@ All notable changes to this project will be documented in this file. - Voice: Plan and file preview markdown now include text-to-speech buttons, with a setting for reading selected text or the full document (thanks to @yangyaofei). - Desktop/macOS: added a menu bar tray with live session status, Mini Chat access, and a provider usage submenu. - Desktop/macOS: added an optional vibrancy effect for the left sidebar. +- Desktop/macOS: startup no longer opens unnecessary folder prompts. - Mobile: refreshed session controls, worktree deletion flow, MCP controls, update flow, and usage tracking for new layout. - Terminal/Mobile: touch scrolling in the terminal no longer conflicts with terminal input as often (thanks to @kostazol). +- Usage: added Cursor quota tracking. +- UI/Localization: added French interface translations and French documentation (thanks to @pascalandr). - VSCode: added an action to archive all sessions from the extension (thanks to @jjdubski). +- VSCode: added multi-root workspace support, including workspace folder switching in the extension (thanks to @mmospanenko). ## [1.12.3] - 2026-06-05 diff --git a/package.json b/package.json index 6f95cfbc..4ce0f0f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.12.3", + "version": "1.12.4", "description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes", "private": true, "type": "module", diff --git a/packages/electron/package.json b/packages/electron/package.json index 7f119ff1..01d6966a 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/electron", - "version": "1.12.3", + "version": "1.12.4", "private": true, "description": "Electron desktop runtime for OpenChamber", "author": "OpenChamber", diff --git a/packages/ui/package.json b/packages/ui/package.json index ef24c7f4..2b28daf3 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.12.3", + "version": "1.12.4", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 61c319bb..2b41f0b6 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,11 +1,17 @@ -## [1.12.4] - 2026-06-10 +## [1.12.4] - 2026-06-11 - Agent Manager: creating isolated runs now opens sessions immediately while worktree setup continues in the background. +- Agent Manager: hidden models now stay hidden in multi-model selection controls (thanks to @kjhq). - Sessions: chat folder assignments now stay in place after reloads. - Sessions: added an action to archive all sessions (thanks to @jjdubski). - Sessions: session and folder rows now have right-click menus for their available actions. +- Workspaces: added multi-root workspace support, including workspace folder switching in the extension (thanks to @mmospanenko). - Settings: added search across settings pages. +- Chat/UI: added a setting to collapse long user messages. - Chat: table copy actions now include a Markdown format option (thanks to @kjhq). +- Chat: `@agent` mentions in rendered messages now use the primary accent color. +- Usage: added Cursor quota tracking. +- UI/Localization: added French extension translations (thanks to @pascalandr). ## [1.12.3] - 2026-06-05 diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 8ff58464..5604fa24 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "%extension.description%", - "version": "1.12.3", + "version": "1.12.4", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index 045eea61..05f7f572 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.12.3", + "version": "1.12.4", "private": false, "type": "module", "main": "./server/index.js",