release v1.3.8

This commit is contained in:
Bohdan Triapitsyn
2025-12-30 00:04:48 +02:00
parent 0f9c50cd58
commit 1492a2e512
9 changed files with 13 additions and 9 deletions
+3
View File
@@ -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.
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.3.7",
"version": "1.3.8",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.3.7"
version = "1.3.8"
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.7",
"version": "1.3.8",
"identifier": "ai.opencode.openchamber",
"build": {
"beforeDevCommand": "bun run dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.3.7",
"version": "1.3.8",
"private": true,
"type": "module",
"main": "src/main.tsx",
+1 -1
View File
@@ -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": {
+3 -2
View File
@@ -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<string, unknown> =>
readConfigLayers(workingDirectory).mergedConfig;
@@ -410,7 +411,7 @@ export const updateAgent = (agentName: string, updates: Record<string, unknown>,
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<string, unkno
let mdModified = false;
let jsonModified = false;
let creatingNewMd = isBuiltinOverride;
const creatingNewMd = isBuiltinOverride;
for (const [field, value] of Object.entries(updates || {})) {
if (field === 'template') {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.3.7",
"version": "1.3.8",
"private": false,
"type": "module",
"main": "./server/index.js",