From 7e38a47e4b83c506d219b9eb026486c8f9fe6c66 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Wed, 4 Mar 2026 20:15:32 +0200 Subject: [PATCH] release v1.8.5 --- CHANGELOG.md | 14 ++++++++++++++ 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/ui/package.json | 2 +- packages/vscode/CHANGELOG.md | 8 ++++++++ packages/vscode/package.json | 2 +- packages/web/package.json | 2 +- 10 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fddfef56..9e647fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.8.5] - 2026-03-04 + +- Desktop: startup now opens the app shell much earlier while background services continue loading, so the app feels ready faster after launch. +- Desktop/macOS: fixed early title updates that could shift traffic-light window controls on startup, keeping native controls stable in their expected position. +- VSCode: edit-style tool results now open directly in a focused diff view, so you can review generated changes at the first modified line with less manual navigation. +- VSCode: cleaned up extension settings by removing duplicate display controls and hiding sections that do not apply in the editor environment. +- Chat: fixed focus-mode composer layout so the footer action row stays pinned and accessible while writing longer prompts. +- UI/Theming: unified loading logos and startup screens across runtimes, with visuals that better match your active theme. +- Projects/UI: project icons now follow active theme foreground colors more consistently, improving readability and visual consistency in project lists. +- Reliability: improved early startup recovery so models and agents are less likely to appear missing right after launch. +- Tunnel/CLI: fixed one-time Cloudflare tunnel connect links in CLI output for `--try-cf-tunnel`, so remote collaborators can use the printed URL/QR flow successfully (thanks to @plfavreau). +- Mobile/PWA: respected OS rotation lock by removing forced orientation behavior in the web app shell (thanks to @theluckystrike). + + ## [1.8.4] - 2026-03-04 - Chat: added clickable file-path links in assistant messages (including line targeting), so you can jump from answer text straight to the exact file location (thanks to @yulia-ivashko). diff --git a/package.json b/package.json index 88a7eaa8..135298ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.8.4", + "version": "1.8.5", "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 d0f724da..a2157f17 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.8.4", + "version": "1.8.5", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.lock b/packages/desktop/src-tauri/Cargo.lock index 2123375d..9c66334c 100644 --- a/packages/desktop/src-tauri/Cargo.lock +++ b/packages/desktop/src-tauri/Cargo.lock @@ -2670,7 +2670,7 @@ dependencies = [ [[package]] name = "openchamber-desktop" -version = "1.8.4" +version = "1.8.5" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index 3c8e07cf..0a41bcbc 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.8.4" +version = "1.8.5" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index da90f7f7..c8e6112e 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.8.4", + "version": "1.8.5", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "node ./scripts/dev-web-server.mjs", diff --git a/packages/ui/package.json b/packages/ui/package.json index 4c078281..cd839a22 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.8.4", + "version": "1.8.5", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index fb72f962..50871d37 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.8.5] - 2026-03-04 + +- Chat/Files: edit-style tool results now open in a VS Code diff editor with focus on the first changed line, making review and follow-up edits much faster. +- Chat: improved focus-mode input layout so the footer action row stays pinned and available while composing long prompts. +- Settings: removed duplicate chat display options from Appearance and hid extension-irrelevant sections, making settings easier to scan. +- UI/Theming: aligned startup/loading branding with the active theme for a more consistent look during connection and auth states. +- Reliability: improved startup recovery for provider/model/agent loading so options are less likely to appear empty right after opening the extension. + ## [1.8.4] - 2026-03-04 - Chat: added Save as image support for assistant messages, so you can export response snapshots directly from the extension. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index b6ed5cca..d2f52b69 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.8.4", + "version": "1.8.5", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index ce8c6d65..69a4dcc7 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.8.4", + "version": "1.8.5", "private": false, "type": "module", "main": "./server/index.js",