release v1.11.4

This commit is contained in:
Bohdan Triapitsyn
2026-05-22 02:07:11 +03:00
parent a22433ed71
commit 07eb9d50d3
11 changed files with 30 additions and 9 deletions
+12
View File
@@ -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).
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.11.3",
"version": "1.11.4",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2684,7 +2684,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.11.3"
version = "1.11.4"
dependencies = [
"anyhow",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.11.3"
version = "1.11.4"
edition = "2021"
publish = false
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.11.3",
"version": "1.11.4",
"private": true,
"type": "module",
"main": "src/main.tsx",
+9
View File
@@ -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.
+1 -1
View File
@@ -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": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.11.3",
"version": "1.11.4",
"private": false,
"type": "module",
"main": "./server/index.js",