release v1.11.1

This commit is contained in:
Bohdan Triapitsyn
2026-05-15 23:18:55 +03:00
parent 88fc8bff22
commit 947f725976
11 changed files with 31 additions and 9 deletions
+14
View File
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.11.1] - 2026-05-15
- Multi-Run: added fusion for multi-run sessions, making it easier to combine parallel results into a single follow-up answer with a customizable Fusion magic prompt.
- Multi-Run: added optional isolation and support for non-Git projects, so parallel runs are available in more workspaces and workflows without requiring branch setup.
- Chat/Sessions: added a header session switcher with project, branch, diff, active, unread, and sub-session context, making it faster to jump between recent work.
- Chat/Subagents: opened subagent sessions read-only in the context panel and made subagent chats read-only, making delegated work safer.
- Chat/Shortcuts: made the agent-switching shortcut configurable and usable from the chat input/model picker, giving keyboard-heavy workflows more control over prompt setup.
- Desktop/Mini Chat: added session switching and the new-session shortcut to Mini Chat, while preserving user-selected sessions during startup.
- Preview: improved embedded preview proxying for absolute same-origin requests and WebSocket URLs, and avoided launching unrelated project actions when no dev-server action is detected.
- Updates/Usage: added a setting to disable OpenCode update notifications, and quota reset times now display in your local timezone.
- Chat/UI: animated sorted-mode tool paths more consistently and guarded tooltip rendering more defensively, keeping active tool output smoother.
- Git: large change lists now display reliably, and branch selection stays hidden for non-Git draft sessions.
- Settings/Skills: the skills catalog now keeps the selected source label visible when switching sources (thanks to @kjhq).
## [1.11.0] - 2026-05-14
- Updates/OpenCode: added in-app OpenCode update checks and upgrade actions, making it easier to keep the bundled OpenCode runtime current without leaving OpenChamber.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openchamber-monorepo",
"version": "1.11.0",
"version": "1.11.1",
"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.0",
"version": "1.11.1",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2684,7 +2684,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.11.0"
version = "1.11.1"
dependencies = [
"anyhow",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.11.0"
version = "1.11.1"
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.0",
"version": "1.11.1",
"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.0",
"version": "1.11.1",
"private": true,
"description": "Electron desktop runtime for OpenChamber",
"author": "OpenChamber",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.11.0",
"version": "1.11.1",
"private": true,
"type": "module",
"main": "src/main.tsx",
+8
View File
@@ -1,3 +1,11 @@
## [1.11.1] - 2026-05-15
- Chat/Sessions: added a session switcher to the chat header, making it faster to jump between recent chats.
- Chat/Subagents: opened subagent sessions read-only in the context panel and made subagent chats read-only, making delegated work safer to inspect without accidental edits.
- Chat/UI: animated sorted-mode tool paths more consistently and guarded tooltip crashes more defensively, keeping active tool output smoother.
- Usage: quota reset times now display in your local timezone, reducing confusion when tracking provider limits.
- Skills: the skills catalog now keeps the selected source label visible when switching sources (thanks to @kjhq).
## [1.11.0] - 2026-05-14
- Chat/Permissions: restored `@agent` mentions in sent messages and parent-session auto-accept for child-session permissions, reducing missed routing and approval friction in delegated work.
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openchamber",
"displayName": "OpenChamber",
"description": "AI coding assistant powered by OpenCode",
"version": "1.11.0",
"version": "1.11.1",
"publisher": "fedaykindev",
"private": true,
"repository": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.11.0",
"version": "1.11.1",
"private": false,
"type": "module",
"main": "./server/index.js",