diff --git a/CHANGELOG.md b/CHANGELOG.md index d1538684..54883f5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] + +## [1.3.8] - 2025-12-29 + - Added Intel Mac (x86_64) support for the desktop application (thanks to @rothnic). - Build workflow now generates separate builds for Apple Silicon (arm64) and Intel (x86_64) Macs (thanks to @rothnic). - Improved dev server HMR by reusing a healthy OpenCode process to avoid zombie instances. diff --git a/package.json b/package.json index a99ac693..79292e48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.3.7", + "version": "1.3.8", "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 af0dc0c2..71ed8b86 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.3.7", + "version": "1.3.8", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index 0c43f6f6..9741b751 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.3.7" +version = "1.3.8" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index 96be7136..7554b647 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.3.7", + "version": "1.3.8", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "bun run dev", diff --git a/packages/ui/package.json b/packages/ui/package.json index f9a2e049..b073d505 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.3.7", + "version": "1.3.8", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 847a2051..0d11f004 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.3.7", + "version": "1.3.8", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/vscode/src/opencodeConfig.ts b/packages/vscode/src/opencodeConfig.ts index 54de809a..3034fbc6 100644 --- a/packages/vscode/src/opencodeConfig.ts +++ b/packages/vscode/src/opencodeConfig.ts @@ -227,6 +227,7 @@ const readConfigLayers = (workingDirectory?: string) => { }; }; +// eslint-disable-next-line @typescript-eslint/no-unused-vars -- kept for potential future use or debugging const readConfig = (workingDirectory?: string): Record => readConfigLayers(workingDirectory).mergedConfig; @@ -410,7 +411,7 @@ export const updateAgent = (agentName: string, updates: Record, let mdModified = false; let jsonModified = false; // Only create new md if it's a built-in override - let creatingNewMd = isBuiltinOverride; + const creatingNewMd = isBuiltinOverride; for (const [field, value] of Object.entries(updates || {})) { if (field === 'prompt') { @@ -625,7 +626,7 @@ export const updateCommand = (commandName: string, updates: Record