release v1.5.0

This commit is contained in:
Bohdan Triapitsyn
2026-01-16 01:24:38 +02:00
parent cf9b7a6516
commit ba49a291bd
9 changed files with 14 additions and 9 deletions
+3
View File
@@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.5.0] - 2026-01-16
- UI: added a new Files tab to browse workspace files directly from the interface.
- Diff: enhanced the diff viewer with mobile support and the ability to ask the agent for comments on changes.
- Git Identities: added "default identity" setting with one-click set/unset and automatic local identity detection.
- VSCode: improved server management to ensure it initializes within the workspace directory with context-aware readiness checks.
- VSCode: added responsive layout with sessions sidebar + chat side-by-side when wide, compact header, and streamlined settings.
- Web/VSCode: fixed orphaned OpenCode processes not being cleaned up on restart or exit.
- Web: the server now automatically resolves and uses an available port if the default is occupied.
- Stability: fixed heartbeat race condition causing session stalls during long tasks (thanks to @tybradle).
- Desktop: fixed commands for worktree setup access to PATH.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openchamber-monorepo",
"version": "1.4.9",
"version": "1.5.0",
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
"private": true,
"type": "module",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.4.9",
"version": "1.5.0",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.4.9"
version = "1.5.0"
edition = "2021"
publish = false
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "OpenChamber",
"version": "1.4.9",
"version": "1.5.0",
"identifier": "ai.opencode.openchamber",
"build": {
"beforeDevCommand": "bun run dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.4.9",
"version": "1.5.0",
"private": true,
"type": "module",
"main": "src/main.tsx",
+4 -2
View File
@@ -1,14 +1,16 @@
## [Unreleased]
## [1.5.0] - 2026-01-16
- Improved OpenCode server management to ensure it initializes within the workspace directory.
- Enhanced extension startup with context-aware readiness checks for the current workspace.
- Fixed orphaned OpenCode processes not being cleaned up on restart or exit.
- Session tabs: fixed opening new session in editor tab; title bar button now opens new session tab, sidebar button opens current or new session.
- Layout: added responsive expanded layout showing sessions sidebar + chat side-by-side when extension is wide enough (≥700px).
- Layout: extension now opens to sessions list instead of new session draft.
- Layout: compact header with reduced padding for better space efficiency.
- Settings: hidden Git Identities tab, Git section, and Diff view settings (not applicable to VS Code).
- Settings: hidden project switcher dropdown (VS Code uses workspace).
- Shortcuts: disabled worktree session creation (Ctrl+Shift+N now opens standard session).
- Shortcuts: disabled worktree session creation with shortcuts (Ctrl+Shift+N now opens standard session).
## [1.4.9] - 2026-01-14
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openchamber",
"displayName": "OpenChamber",
"description": "AI coding assistant powered by OpenCode",
"version": "1.4.9",
"version": "1.5.0",
"publisher": "fedaykindev",
"private": true,
"repository": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.4.9",
"version": "1.5.0",
"private": false,
"type": "module",
"main": "./server/index.js",