From d969ff4af13cd279d10ed3f680f5aa1018c44db2 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Thu, 12 Mar 2026 20:07:11 +0200 Subject: [PATCH] chore: update changelogs with recent enhancements and fixes across GitHub, Sessions, Chat, and Docs (#644) --- CHANGELOG.md | 9 +++++++++ packages/desktop/src-tauri/tauri.conf.json | 2 +- packages/vscode/CHANGELOG.md | 8 ++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e647fb8..1a85fd9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +- GitHub: improved pull request status tracking and refresh behavior, so PR state stays more accurate in active workflows. +- Sessions: worktrees with active sessions now surface earlier in the sidebar, making it faster to jump back into in-progress work (thanks to @GhostFlying). +- Chat: fixed narrow-layout send behavior for modified Enter shortcuts, so keyboard sending is more reliable in compact views (thanks to @eengad). +- Chat: fixed queue-button behavior and focus-mode composer sizing, keeping input controls reachable in long prompts (thanks to @shekohex). +- Projects: project action inputs now submit with Enter for a quicker run flow (thanks to @DocterZed). +- Desktop/Settings: added a spell-check toggle so you can choose whether inline spelling assistance is enabled while typing (thanks to @DocterZed). +- Mobile/PWA: install metadata now honors orientation lock more consistently, improving expected behavior on rotation-restricted devices (thanks to @atgehrhardt). +- Docs: refreshed project documentation and security guidance to make setup and onboarding easier. + ## [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. diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index c8e6112e..77232b58 100644 --- a/packages/desktop/src-tauri/tauri.conf.json +++ b/packages/desktop/src-tauri/tauri.conf.json @@ -78,7 +78,7 @@ "endpoints": [ "https://github.com/btriapitsyn/openchamber/releases/latest/download/latest.json" ], - "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEU0NjI5NDJGNEU0QzFEMTYKUldRV0hVeE9MNVJpNUdRemdsbm8wQ2YxQkU4KzBOOEg3TkpXZzIzb244N3Y0R3I4N2FtUk1NMUEK" + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIwRDMyQUQzNjNFRTc1ODIKUldTQ2RlNWoweXJUSUdpVWVWNm84R1pHamYzNVFhYWgyWmlpWFVzem5nUTlHd1dlRlNTV0FFc3IK" } } } diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 50871d37..4c81bb6a 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,11 @@ +## [Unreleased] + +- Sessions: worktrees with active chats are now prioritized in the sidebar, so in-progress work is easier to resume (thanks to @GhostFlying). +- Chat: fixed modified Enter send shortcuts in narrow layouts, so Ctrl/Cmd+Enter send works more consistently when the panel is compact (thanks to @eengad). +- Chat: fixed queue button behavior and focus-mode composer sizing so input actions stay visible during longer prompts (thanks to @shekohex). +- Reliability: improved session sidebar stability during heavy session switching and background status updates. +- Docs: updated extension setup and security docs for clearer onboarding and usage guidance. + ## [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.