release v1.6.4
This commit is contained in:
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.6.4] - 2026-02-5
|
||||
|
||||
- Desktop: switch between local and remote OpenChamber instances, plus a thinner runtime for better feature parity and fewer desktop-only quirks.
|
||||
- VSCode: improved Windows PATH resolution and cold-start readiness checks to reduce "stuck loading" for sessions/models/agents.
|
||||
- Mobile: split Agent/Model controls and a quick commands button with autocomplete (Commands/Agents/Files) for easier input (thanks to @Jovines, @gsxdsm).
|
||||
- Chat: select text in messages to quickly add it to your prompt or start a new session (thanks to @gsxdsm).
|
||||
- Diff/Plans: add inline comment drafts so you can annotate specific lines and include those notes in requests (thanks to @nelsonPires5).
|
||||
- Terminal/Syntax: font size controls and Phoenix file extension support for better highlighting in files and diffs (thanks to @shekohex).
|
||||
- Usage: expanded quota tracking with more providers (including GitHub Copilot) and a provider selector dropdown (thanks to @gsxdsm, @nelsonPires5).
|
||||
- Git: improved macOS SSH agent support for smoother private-repo auth (thanks to @shekohex).
|
||||
- Web: fixed missing icon when installing the Android PWA (thanks to @nelsonPires5).
|
||||
- GitHub: PR description generation supports optional extra context for better summaries (thanks to @nelsonPires5).
|
||||
|
||||
|
||||
## [1.6.3] - 2026-02-2
|
||||
|
||||
- Web: improved server readiness check to use the `/global/health` endpoint for more reliable startup detection.
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openchamber-monorepo",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/desktop",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"desktopPrerequisites": [
|
||||
|
||||
Generated
+1
-1
@@ -2669,7 +2669,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.6.3"
|
||||
version = "1.6.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"log",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.6.3"
|
||||
version = "1.6.4"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
||||
"productName": "OpenChamber",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"identifier": "ai.opencode.openchamber",
|
||||
"build": {
|
||||
"beforeDevCommand": "node ./scripts/dev-web-server.mjs",
|
||||
@@ -39,8 +39,12 @@
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"externalBin": ["sidecars/openchamber-server"],
|
||||
"resources": ["resources/web-dist/**/*"],
|
||||
"externalBin": [
|
||||
"sidecars/openchamber-server"
|
||||
],
|
||||
"resources": [
|
||||
"resources/web-dist/**/*"
|
||||
],
|
||||
"icon": [
|
||||
"icons/icon.icns",
|
||||
"icons/icon.png"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/ui",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/main.tsx",
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
## [1.6.4] - 2026-02-5
|
||||
|
||||
- Improved Windows PATH resolution and cold-start readiness checks to reduce "stuck loading" sessions.
|
||||
- Usage: expanded quota tracking with more providers (including GitHub Copilot) and a provider selector dropdown (thanks to @gsxdsm, @nelsonPires5).
|
||||
- Chat: select text in messages to quickly add it to your prompt or start a new session (thanks to @gsxdsm).
|
||||
|
||||
|
||||
## [1.6.3] - 2026-02-2
|
||||
|
||||
- Improved server health check with the proper health API endpoint and increased timeout for steadier startup (thanks to @wienans).
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "openchamber",
|
||||
"displayName": "OpenChamber",
|
||||
"description": "AI coding assistant powered by OpenCode",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"publisher": "fedaykindev",
|
||||
"private": true,
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/web",
|
||||
"version": "1.6.3",
|
||||
"version": "1.6.4",
|
||||
"private": false,
|
||||
"type": "module",
|
||||
"main": "./server/index.js",
|
||||
|
||||
Reference in New Issue
Block a user