diff --git a/CHANGELOG.md b/CHANGELOG.md index 5393c004..eb224271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.14.1] - 2026-07-07 + +- Chat: finished agent replies can now show a short recap and a suggested next message, with separate settings for each and a Small Model setting for choosing the utility model used for those helpers. +- Notes/Todos: adding selected chat text to notes now uses the Small Model to summarize it automatically. +- Voice: read-aloud can now use the Small Model to summarize long text before speaking it. +- Git/GitHub: commit message and pull-request generation now use the Small Model from setting instead of sending message to chat. +- Chat: the timeline dialog can now load older messages when the current session history has not all been fetched yet. +- Chat: file references with line ranges like `src/file.ts:10-20` are now clickable in messages (thanks to @Catan). +- Git/Diff: opening a changed file now jumps to the first changed line instead of the start of the diff hunk. +- Mobile: the composer stays focused more reliably when the keyboard opens, and the dictation transcript grows the composer like typed text. +- Mobile: iOS PWA safe areas, keyboard overlays, and app-resume connection checks were tightened up. +- Desktop: password-protected instances opened from desktop or a browser no longer take the mobile-only unlock path. +- VSCode: favorite models now stay saved after restarting the extension (thanks to @Catan). +- VSCode: closing Settings returns to the previous extension view instead of always showing the sessions list (thanks to @Catan). + ## [1.14.0] - 2026-07-05 - Voice: voice input was rebuilt around live streaming transcription — the composer mic shows a live transcript with a volume meter and timer while you speak, and a recording can be cancelled, inserted, or inserted and sent; failed transcriptions keep their audio so you can retry or accept the partial text. diff --git a/package.json b/package.json index 7946b914..fd15a89d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.14.0", + "version": "1.14.1", "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 ce9df053..cb766731 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/electron", - "version": "1.14.0", + "version": "1.14.1", "private": true, "description": "Electron desktop runtime for OpenChamber", "author": "OpenChamber", diff --git a/packages/ui/package.json b/packages/ui/package.json index e7282473..d5c8d7c0 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.14.0", + "version": "1.14.1", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 93b7b95d..514d95c2 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.14.1] - 2026-07-07 + +- Chat: the timeline dialog can now load older messages when the current session history has not all been fetched yet. +- Chat: file references with line ranges like `src/file.ts:10-20` are now clickable in messages (thanks to @Catan). +- Chat: favorite models now stay saved after restarting the extension (thanks to @Catan). +- Settings: closing Settings returns to the previous extension view instead of always showing the sessions list (thanks to @Catan). + ## [1.14.0] - 2026-07-05 - Chat: loading older messages keeps your scroll position steady. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index af993f2c..51b24252 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "%extension.description%", - "version": "1.14.0", + "version": "1.14.1", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index f3923c94..8eb277e2 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.14.0", + "version": "1.14.1", "private": false, "type": "module", "main": "./server/index.js",