release v1.3.8
This commit is contained in:
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
|
||||||
|
## [1.3.8] - 2025-12-29
|
||||||
|
|
||||||
- Added Intel Mac (x86_64) support for the desktop application (thanks to @rothnic).
|
- 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).
|
- 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.
|
- Improved dev server HMR by reusing a healthy OpenCode process to avoid zombie instances.
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "openchamber-monorepo",
|
"name": "openchamber-monorepo",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openchamber/desktop",
|
"name": "@openchamber/desktop",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"desktopPrerequisites": [
|
"desktopPrerequisites": [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "openchamber-desktop"
|
name = "openchamber-desktop"
|
||||||
version = "1.3.7"
|
version = "1.3.8"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
||||||
"productName": "OpenChamber",
|
"productName": "OpenChamber",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"identifier": "ai.opencode.openchamber",
|
"identifier": "ai.opencode.openchamber",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openchamber/ui",
|
"name": "@openchamber/ui",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "src/main.tsx",
|
"main": "src/main.tsx",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "openchamber",
|
"name": "openchamber",
|
||||||
"displayName": "OpenChamber",
|
"displayName": "OpenChamber",
|
||||||
"description": "AI coding assistant powered by OpenCode",
|
"description": "AI coding assistant powered by OpenCode",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"publisher": "fedaykindev",
|
"publisher": "fedaykindev",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -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> =>
|
const readConfig = (workingDirectory?: string): Record<string, unknown> =>
|
||||||
readConfigLayers(workingDirectory).mergedConfig;
|
readConfigLayers(workingDirectory).mergedConfig;
|
||||||
|
|
||||||
@@ -410,7 +411,7 @@ export const updateAgent = (agentName: string, updates: Record<string, unknown>,
|
|||||||
let mdModified = false;
|
let mdModified = false;
|
||||||
let jsonModified = false;
|
let jsonModified = false;
|
||||||
// Only create new md if it's a built-in override
|
// 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 || {})) {
|
for (const [field, value] of Object.entries(updates || {})) {
|
||||||
if (field === 'prompt') {
|
if (field === 'prompt') {
|
||||||
@@ -625,7 +626,7 @@ export const updateCommand = (commandName: string, updates: Record<string, unkno
|
|||||||
|
|
||||||
let mdModified = false;
|
let mdModified = false;
|
||||||
let jsonModified = false;
|
let jsonModified = false;
|
||||||
let creatingNewMd = isBuiltinOverride;
|
const creatingNewMd = isBuiltinOverride;
|
||||||
|
|
||||||
for (const [field, value] of Object.entries(updates || {})) {
|
for (const [field, value] of Object.entries(updates || {})) {
|
||||||
if (field === 'template') {
|
if (field === 'template') {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openchamber/web",
|
"name": "@openchamber/web",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"private": false,
|
"private": false,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./server/index.js",
|
"main": "./server/index.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user