release v1.7.5

This commit is contained in:
Bohdan Triapitsyn
2026-02-25 19:55:27 +02:00
parent a1bd2bbab8
commit a59bf010bb
10 changed files with 25 additions and 8 deletions
+12
View File
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.7.5] - 2026-02-25
- UI: moved projects into a dedicated sidebar rail and tightened the layout so switching projects and sessions feels faster.
- Chat: fixed an issue where messages could occasionally duplicate or disappear during active conversations.
- Sessions: reduced session-switching overhead to make chat context changes feel more immediate.
- Reliability/Auth: migrated session auth storage to signed JWTs with a persistent secret, reducing unexpected auth-state drift after reconnects or reloads (thanks to @Jovines).
- Mobile: pending permission prompts now recover after reconnect/resume instead of getting lost mid-run (thanks to @nelsonPires5).
- Mobile/Chat: refined message spacing and removed the top scroll shadow for a cleaner small-screen reading experience (thanks to @Jovines).
- Web: added `OPENCODE_HOST` support so you can connect directly to an external OpenCode server using a full base URL (thanks to @colinmollenhour).
- Web/Mobile: fixed in-app update flow in containerized setups so updates apply correctly.
## [1.7.4] - 2026-02-24
- Settings: redesigned the settings workspace with flatter, more consistent page layouts so configuration is faster to scan and edit.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openchamber-monorepo",
"version": "1.7.4",
"version": "1.7.5",
"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.7.4",
"version": "1.7.5",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2670,7 +2670,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.7.4"
version = "1.7.5"
dependencies = [
"anyhow",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.7.4"
version = "1.7.5"
edition = "2021"
publish = false
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "OpenChamber",
"version": "1.7.4",
"version": "1.7.5",
"identifier": "ai.opencode.openchamber",
"build": {
"beforeDevCommand": "node ./scripts/dev-web-server.mjs",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.7.4",
"version": "1.7.5",
"private": true,
"type": "module",
"main": "src/main.tsx",
+5
View File
@@ -1,3 +1,8 @@
## [1.7.5] - 2026-02-25
- Sessions: improved switching performance so moving between chats feels more immediate.
- Chat: fixed cases where messages could duplicate or disappear during active conversations.
## [1.7.4] - 2026-02-24
- Settings: redesigned the settings workspace with flatter, more consistent layouts so key options are easier to find.
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openchamber",
"displayName": "OpenChamber",
"description": "AI coding assistant powered by OpenCode",
"version": "1.7.4",
"version": "1.7.5",
"publisher": "fedaykindev",
"private": true,
"repository": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.7.4",
"version": "1.7.5",
"private": false,
"type": "module",
"main": "./server/index.js",