release v1.9.6

This commit is contained in:
Bohdan Triapitsyn
2026-04-17 19:06:27 +03:00
parent 2766327a68
commit 5710198864
12 changed files with 31 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.9.5",
"version": "1.9.6",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2684,7 +2684,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.9.5"
version = "1.9.6"
dependencies = [
"anyhow",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.9.5"
version = "1.9.6"
edition = "2021"
publish = false
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "OpenChamber",
"version": "1.9.5",
"version": "1.9.6",
"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.9.5",
"version": "1.9.6",
"private": true,
"type": "module",
"main": "src/main.tsx",
-1
View File
@@ -1,6 +1,5 @@
@import "tailwindcss";
@import "tw-animate-css";
@import "katex/dist/katex.min.css";
@import "./styles/design-system.css";
@import "./styles/typography.css";
@import "./styles/mobile.css";
+1
View File
@@ -1,6 +1,7 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './styles/fonts'
import 'katex/dist/katex.min.css'
import './index.css'
import App from './App.tsx'
import { SessionAuthGate } from './components/auth/SessionAuthGate'
+8
View File
@@ -1,3 +1,11 @@
## [1.9.6] - 2026-04-17
- Reliability: improved startup shell detection to avoid false OpenCode discovery on POSIX login shells, reducing stuck startup edge cases in new workspaces (thanks to @geekifan).
- Reliability/Streaming: moved to a WebSocket-first message stream with SSE fallback and added safer compression handling, improving stability on slower or proxied connections (thanks to @geekifan, @jwcrystal).
- Sessions/Worktrees: enforced worktree isolation for session and Git flows, reducing cross-project context bleed when switching chats or branches (thanks to @jwcrystal).
- Chat/Export: added export session as Markdown and improved empty-state/export behavior, making conversation handoff and notes easier (thanks to @coldbrow).
- Chat/Markdown: added LaTeX rendering support for clearer math and technical notation in rendered messages (thanks to @ricautomation).
## [1.9.5] - 2026-04-14
- Chat/Tool Output: added an interactive tree viewer for structured outputs and fixed JSON quote rendering, making large payloads easier to inspect accurately (thanks to @yaozhenghangma).
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openchamber",
"displayName": "OpenChamber",
"description": "AI coding assistant powered by OpenCode",
"version": "1.9.5",
"version": "1.9.6",
"publisher": "fedaykindev",
"private": true,
"repository": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.9.5",
"version": "1.9.6",
"private": false,
"type": "module",
"main": "./server/index.js",