release v1.3.2

This commit is contained in:
Bohdan Triapitsyn
2025-12-22 02:31:43 +02:00
parent 8948c7f329
commit 34fea1c6b7
12 changed files with 47 additions and 14 deletions
+7
View File
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.3.2] - 2025-12-22
- Fixed new bug session when switching directories
- Updated Opencode SDK to the latest version
## [1.3.1] - 2025-12-22
- New chats no longer create a session until you send your first message.
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "openchamber-monorepo",
"version": "1.3.1",
"version": "1.3.2",
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
"private": true,
"type": "module",
@@ -59,7 +59,7 @@
"@heroui/system": "^2.4.23",
"@heroui/theme": "^2.4.23",
"@ibm/plex": "^6.4.1",
"@opencode-ai/sdk": "^1.0.167",
"@opencode-ai/sdk": "^1.0.185",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.3.1",
"version": "1.3.2",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2847,7 +2847,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.3.0"
version = "1.3.1"
dependencies = [
"anyhow",
"axum",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.3.1"
version = "1.3.2"
edition = "2021"
publish = false
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "OpenChamber",
"version": "1.3.1",
"version": "1.3.2",
"identifier": "ai.opencode.openchamber",
"build": {
"beforeDevCommand": "pnpm dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.3.1",
"version": "1.3.2",
"private": true,
"type": "module",
"main": "src/main.tsx",
+26
View File
@@ -642,6 +642,32 @@ usePermissionStore.subscribe((state, prevState) => {
});
});
useDirectoryStore.subscribe((state, prevState) => {
const nextDirectory = normalizePath(state.currentDirectory ?? null);
const prevDirectory = normalizePath(prevState.currentDirectory ?? null);
if (nextDirectory === prevDirectory) {
return;
}
const draft = useSessionStore.getState().newSessionDraft;
if (!draft?.open) {
return;
}
const draftDirectory = normalizePath(draft.directoryOverride);
if (draftDirectory && draftDirectory !== prevDirectory) {
return;
}
useSessionStore.setState((store) => ({
newSessionDraft: {
...store.newSessionDraft,
directoryOverride: nextDirectory,
parentID: null,
},
}));
});
const bootDraftOpen = useSessionStore.getState().newSessionDraft?.open;
useSessionStore.setState({
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "openchamber",
"displayName": "OpenChamber",
"description": "AI coding assistant powered by OpenCode",
"version": "1.3.1",
"version": "1.3.2",
"publisher": "fedaykindev",
"private": true,
"repository": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.3.1",
"version": "1.3.2",
"private": false,
"type": "module",
"main": "./server/index.js",
+5 -5
View File
@@ -27,8 +27,8 @@ importers:
specifier: ^6.4.1
version: 6.4.1
'@opencode-ai/sdk':
specifier: ^1.0.167
version: 1.0.167
specifier: ^1.0.185
version: 1.0.185
'@radix-ui/react-collapsible':
specifier: ^1.1.12
version: 1.1.12(@types/react-dom@19.1.9(@types/react@19.1.12))(@types/react@19.1.12)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
@@ -1363,8 +1363,8 @@ packages:
'@opencode-ai/sdk@1.0.133':
resolution: {integrity: sha512-kM+VJJ09SU51aruQ78DSy+6CjNc4wMytvGBrZ1IIJ8etUIdGA59wrnIOSxBVs4u/Gb9pjjgsF8sWp59UdLWP9w==}
'@opencode-ai/sdk@1.0.167':
resolution: {integrity: sha512-zUeAg+s/lddSyJ4noeKxUclT35huyOK0hHRBJn3bKL6LzBTxlRXxKVsSBaqT3JaX/xL+kJeLqzV2W4IetAzlUA==}
'@opencode-ai/sdk@1.0.185':
resolution: {integrity: sha512-Er3SdPWWZgSXCy1hUCqya1wj4kD2nbbqywyoLgvo1BvpZqASJmtqSCZoO2wWrg6UZU+ME4YcddeTriQPb0ygyw==}
'@opencode-ai/sdk@1.0.65':
resolution: {integrity: sha512-35aOmXhRHNPlx0ThhYwudfZhP1Sg8y94Wsqm+XsgGfHATllQvQjNVOVPfSp3TW3xCAoJ0/PXJlcYjPS3kZDeNA==}
@@ -6667,7 +6667,7 @@ snapshots:
'@opencode-ai/sdk@1.0.133': {}
'@opencode-ai/sdk@1.0.167': {}
'@opencode-ai/sdk@1.0.185': {}
'@opencode-ai/sdk@1.0.65': {}