From d01b58593a7528c223520ae5a99153371e2d0e36 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Tue, 20 Jan 2026 15:32:52 +0200 Subject: [PATCH] release v1.5.3 --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- packages/desktop/package.json | 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 | 9 +++++++++ packages/vscode/package.json | 2 +- packages/web/package.json | 2 +- 9 files changed, 29 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfd8f261..dffceba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.5.3] - 2026-01-20 + +- Files: edit files inline with syntax highlighting, draft protection, and save/discard flow. +- Files: toggles to show hidden/dotfiles and gitignored entries in file browsers and pickers (thanks to @syntext). +- Settings: new memory limits controls for session message history. +- Chat: smoother session switching with more stable scroll anchoring. +- Chat: new Activity view in collapsed state, now shows latest 6 tools by default. +- Chat: fixed message copy on Firefox for macOS (thanks to @syntext). +- Appearance: new corner radius control and restored input bar offset setting (thanks to @TheRealAshik). +- Git: generated commit messages now auto-pick a gitmoji when enabled (thanks to @TheRealAshik). +- Performance: faster filesystem/search operations and general stability improvements (thanks to @TheRealAshik). + + ## [1.5.2] - 2026-01-17 - Sessions: added branch picker dialog to start new worktree sessions from local branches (thanks to @nilskroe). diff --git a/package.json b/package.json index 4e2b9239..eba59bbc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.5.2", + "version": "1.5.3", "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 d52aa902..7e3d775d 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.5.2", + "version": "1.5.3", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index dc93cd11..09519902 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.5.2" +version = "1.5.3" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index 54a2c0e8..1167e11b 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.5.2", + "version": "1.5.3", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "bun run dev", diff --git a/packages/ui/package.json b/packages/ui/package.json index d392f1c9..84401871 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.5.2", + "version": "1.5.3", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 74f08d38..9ce49134 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.5.3] - 2026-01-20 + +- Chat: Smoother session switching with more stable scroll anchoring. +- Chat: new Activity view in collapsed state, now shows latest 6 tools by default. +- Chat: Updated accent color derivation to better match editor themes. +- Performance: Faster filesystem/search operations and general stability improvements (thanks to @TheRealAshik). +- Files: adjusted default visibility for hidden/dotfiles to be visible and gitignored entries to be hidden. + + ## [1.5.2] - 2026-01-17 - Chat: optimized message loading for opening sessions. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 81ab268d..ef57b546 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.5.2", + "version": "1.5.3", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index c3e6d627..ad239837 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.5.2", + "version": "1.5.3", "private": false, "type": "module", "main": "./server/index.js",