diff --git a/CHANGELOG.md b/CHANGELOG.md index 4abcc01c..5ae9d7a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,28 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -- Chat: selecting a user-installed skill from the slash command menu now invokes the skill and injects its content, instead of inserting the skill name as plain text. +## [1.13.3] - 2026-06-24 + +- Chat: selecting a user-installed skill from the slash command menu now invokes the skill instead of inserting the skill name as plain text (thanks to @IbrahimKhan12). +- Chat: pasted text containing `@` no longer opens file mention autocomplete unexpectedly (thanks to @charpeni). +- Chat: code blocks in user messages now preserve characters like `<` and `->` instead of escaping them inside the code block (thanks to @bashrusakh). +- Chat: switching sessions and loading older messages no longer causes the conversation to jump backward or oscillate around the current scroll position (thanks to @herjarsa). +- Chat: Arrow Up opens prompt history again when the cursor is at the start of the composer. +- Sessions: new sessions now stay attached to the selected project or current workspace directory instead of sometimes appearing under a stale project (thanks to @bashrusakh). +- Sessions: pinned sessions and folder rows no longer disappear from the sidebar after an empty session-list refresh (thanks to @bashrusakh). +- Agents: agent settings now include thinking variant, temperature, and top-p controls, and clearing temperature or top-p now removes the override (thanks to @bashrusakh). +- Settings/Models: per-model visibility and sibling model selections now stay saved after changes (thanks to @attilaszasz). +- Settings/Skills: the skills catalog refreshes after catalog settings change (thanks to @gokulkgm). +- Providers: disconnecting a provider from settings now works for the selected provider (thanks to @bashrusakh). +- Git: Git identities can now enable SSH commit signing. +- Git: pushing from the Git view now syncs first, reducing rejected pushes when the branch needs to update. +- Usage: MiniMax M3 and Token Plan usage now handle the provider's latest API response format (thanks to @baruchvitorino). +- VSCode: font size and padding preferences now apply inside the extension webview (thanks to @Sin991114). +- Startup: managed OpenCode server processes left behind by a previous crash are cleaned up on the next start. +- CLI: stale server PID files are checked more carefully so unrelated processes are not mistaken for an OpenChamber server. +- Files: downloads and file names with non-Latin characters now handle those characters correctly in headers (thanks to @FanFan4204). +- Mobile: subagent chevrons no longer overlap long session titles, and session grouping now matches the exact workspace directory (thanks to @weixiang1862, @lilyzhaun). + ## [1.13.2] - 2026-06-18 - Chat/Performance: long conversations and large session lists now stay smooth and responsive while a response is streaming (thanks to @bashrusakh). diff --git a/package.json b/package.json index 8e216050..d2d0aefd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.13.2", + "version": "1.13.3", "description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes", "private": true, "type": "module", diff --git a/packages/electron/package.json b/packages/electron/package.json index 6bb09c58..6a23ff1b 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/electron", - "version": "1.13.2", + "version": "1.13.3", "private": true, "description": "Electron desktop runtime for OpenChamber", "author": "OpenChamber", diff --git a/packages/ui/package.json b/packages/ui/package.json index 3285c095..0bb71dc0 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.13.2", + "version": "1.13.3", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 9a56e677..c0687c6e 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,19 @@ +## [1.13.3] - 2026-06-24 + +- Chat: selecting a user-installed skill from the slash command menu now invokes the skill instead of inserting the skill name as plain text (thanks to @IbrahimKhan12). +- Chat: pasted text containing `@` no longer opens file mention autocomplete unexpectedly (thanks to @charpeni). +- Chat: code blocks in user messages now preserve characters like `<` and `->` instead of escaping them inside the code block (thanks to @bashrusakh). +- Chat: switching sessions and loading older messages no longer causes the conversation to jump backward or oscillate around the current scroll position (thanks to @herjarsa). +- Chat: Arrow Up opens prompt history again when the cursor is at the start of the composer. +- Sessions: new sessions now stay attached to the selected workspace directory instead of sometimes appearing under a stale project (thanks to @bashrusakh). +- Sessions: pinned sessions and folder rows no longer disappear from the sidebar after an empty session-list refresh (thanks to @bashrusakh). +- Agents: agent settings now include thinking variant, temperature, and top-p controls, and clearing temperature or top-p now removes the override (thanks to @bashrusakh). +- Settings/Models: per-model visibility and sibling model selections now stay saved after changes (thanks to @attilaszasz). +- Settings: font size and padding preferences now apply inside the extension webview (thanks to @Sin991114). +- Settings/Skills: the skills catalog refreshes after catalog settings change (thanks to @gokulkgm). +- Usage: MiniMax M3 and Token Plan usage now handle the provider's latest API response format (thanks to @baruchvitorino). +- Startup: managed OpenCode server processes left behind by a previous extension crash are cleaned up on the next start. + ## [1.13.2] - 2026-06-18 - Chat/Performance: long conversations and large session lists now stay smooth and responsive while a response is streaming (thanks to @bashrusakh). diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 3b68324c..96a198e2 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "%extension.description%", - "version": "1.13.2", + "version": "1.13.3", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index ae5ec803..6b9bab68 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.13.2", + "version": "1.13.3", "private": false, "type": "module", "main": "./server/index.js",