From 07eb9d50d31e8a1c2c860df10ad45e48ae6b2be9 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Fri, 22 May 2026 02:07:11 +0300 Subject: [PATCH] release v1.11.4 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- packages/desktop/package.json | 2 +- packages/desktop/src-tauri/Cargo.lock | 2 +- packages/desktop/src-tauri/Cargo.toml | 2 +- packages/desktop/src-tauri/tauri.conf.json | 2 +- packages/electron/package.json | 2 +- packages/ui/package.json | 2 +- packages/vscode/CHANGELOG.md | 9 +++++++++ packages/vscode/package.json | 2 +- packages/web/package.json | 2 +- 11 files changed, 30 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93d1e724..12f238eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.11.4] - 2026-05-22 + +- Desktop: Electron is now the desktop release target, with updated macOS menu actions for the right sidebar and terminal dock. +- Chat: added reusable snippets with `#` autocomplete in the composer and a Snippets settings page for global and project snippets with [opencode-snippets](https://github.com/JosXa/opencode-snippets) plugin compatibility. +- Multi-Run: runs can now be split into separate prompt/model groups, and Multi-Run prompts support command, file, agent, and snippet autocomplete (thanks to @roctom). +- UI: refreshed the desktop workspace shell with a full-width header, framed chat area, and smooth left/right sidebar open and close states. +- Chat: completed reasoning blocks stay collapsed without replaying the collapse animation when you reopen a session. +- Files: file search and mention results avoid mixing entries from similar query/cache keys (thanks to @isanchez404). +- VSCode: switching between chat sessions is less likely to stall on very large conversations. +- Voice: preview audio now stops and cleans up correctly when you stop playback or leave Voice settings (thanks to @isanchez404). +- UI/Localization: refreshed Simplified Chinese terminology across the interface (thanks to @luojiyin). + ## [1.11.3] - 2026-05-19 - Chat: question cards now include copy buttons for Markdown and JSON (thanks to @robertoberto). diff --git a/package.json b/package.json index c4757868..bb0d6f1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.11.3", + "version": "1.11.4", "description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes", "private": true, "type": "module", diff --git a/packages/desktop/package.json b/packages/desktop/package.json index e85e8947..34d7fe6b 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.11.3", + "version": "1.11.4", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.lock b/packages/desktop/src-tauri/Cargo.lock index b83bac78..08bf61ad 100644 --- a/packages/desktop/src-tauri/Cargo.lock +++ b/packages/desktop/src-tauri/Cargo.lock @@ -2684,7 +2684,7 @@ dependencies = [ [[package]] name = "openchamber-desktop" -version = "1.11.3" +version = "1.11.4" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index c7f374db..3f3282ac 100644 --- a/packages/desktop/src-tauri/Cargo.toml +++ b/packages/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openchamber-desktop" -version = "1.11.3" +version = "1.11.4" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index f425f398..b9a91683 100644 --- a/packages/desktop/src-tauri/tauri.conf.json +++ b/packages/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "productName": "OpenChamber", - "version": "1.11.3", + "version": "1.11.4", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "node ./scripts/dev-web-server.mjs", diff --git a/packages/electron/package.json b/packages/electron/package.json index e05e41ed..468cd147 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/electron", - "version": "1.11.3", + "version": "1.11.4", "private": true, "description": "Electron desktop runtime for OpenChamber", "author": "OpenChamber", diff --git a/packages/ui/package.json b/packages/ui/package.json index 49dbb6a3..d0c2cbfe 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.11.3", + "version": "1.11.4", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 91a96610..07d9588a 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.11.4] - 2026-05-22 + +- Sessions: switching between chat sessions now keeps less inactive message history in the webview, especially after opening large conversations. +- Sessions: opening a session now fetches a smaller initial message page, while still expanding enough to show the latest user turn when needed. +- Chat: task tool results use final task summaries when available instead of repeatedly loading child-session messages. +- Chat: task tool polling in the extension now uses smaller message fetches while subtasks are active or idle. +- Chat: markdown file links now cap path checks in the extension, reducing stalls in messages with many inline paths. +- Chat: the extension header reads only the active session title and latest usage data instead of reacting to the full session list. + ## [1.11.3] - 2026-05-19 - Editor Integration: Add to Context now attaches the selected code as context instead of pasting a formatted block into the input. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 220714ee..0d67633a 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "AI coding assistant powered by OpenCode", - "version": "1.11.3", + "version": "1.11.4", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index 8ccd8563..ccccf184 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.11.3", + "version": "1.11.4", "private": false, "type": "module", "main": "./server/index.js",