release v1.4.0
This commit is contained in:
+10
-3
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
- VS Code extension: reorganized extension location. It is now on the right sidebar for VSCode and on the left for Cursor/Windsurf.
|
## [1.4.0] - 2026-01-01
|
||||||
- VS Code extension: Move Navigation Info into the title bar.
|
|
||||||
- Worktrees now do not create a remote branch by default; only the push action publishes the branch to remote.
|
- Added the ability to run multiple agents from a single prompt, with each agent working in an isolated worktree.
|
||||||
|
- Git view: improved branch publishing by detecting unpublished commits and automatically setting the upstream on first push.
|
||||||
|
- Worktrees: new branch creation can start from a chosen base; remote branches are only created when you push.
|
||||||
|
- VS Code extension: default location is now the right secondary sidebar in VS Code, and the left activity bar in Cursor/Windsurf; navigation moved into the title bar (thanks to @wienans).
|
||||||
|
- Web app: added Cloudflare Quick Tunnel support for simpler remote access (thanks to @wojons and @aptdnfapt).
|
||||||
|
- Mobile: improved keyboard/input bar behavior (including Android fixes and better keyboard avoidance) and added an offset setting for curved-screen devices (thanks to @auroraflux).
|
||||||
|
- Chat: now shows clearer error messages when agent messages fail.
|
||||||
|
- Sidebar: improved readability for sticky headers with a dynamic background.
|
||||||
|
|
||||||
|
|
||||||
## [1.3.9] - 2025-12-30
|
## [1.3.9] - 2025-12-30
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ The whole project was built entirely with AI coding agents under my supervision.
|
|||||||
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
||||||
- Rich permission cards with syntax-highlighted operation previews
|
- Rich permission cards with syntax-highlighted operation previews
|
||||||
- Per-agent permission modes (ask/allow/full) per session
|
- Per-agent permission modes (ask/allow/full) per session
|
||||||
|
- Multi-agent runs from a single prompt (isolated worktrees; Web/PWA + Desktop)
|
||||||
- Branchable conversations: start a new session from any assistant response
|
- Branchable conversations: start a new session from any assistant response
|
||||||
- Task tracker UI with live progress and tool summaries
|
- Task tracker UI with live progress and tool summaries
|
||||||
- Model selection UX: favorites, recents, and configurable tool output density
|
- Model selection UX: favorites, recents, and configurable tool output density
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "openchamber-monorepo",
|
"name": "openchamber-monorepo",
|
||||||
"version": "1.3.9",
|
"version": "1.4.0",
|
||||||
"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",
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ Currently available for macOS (Apple Silicon).
|
|||||||
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
||||||
- Rich permission cards with syntax-highlighted operation previews
|
- Rich permission cards with syntax-highlighted operation previews
|
||||||
- Per-agent permission modes (ask/allow/full) per session
|
- Per-agent permission modes (ask/allow/full) per session
|
||||||
|
- Multi-agent runs from a single prompt (isolated worktrees)
|
||||||
- Branchable conversations: start a new session from any assistant response
|
- Branchable conversations: start a new session from any assistant response
|
||||||
- Task tracker UI with live progress and tool summaries
|
- Task tracker UI with live progress and tool summaries
|
||||||
- Model selection UX: favorites, recents, and configurable tool output density
|
- Model selection UX: favorites, recents, and configurable tool output density
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openchamber/desktop",
|
"name": "@openchamber/desktop",
|
||||||
"version": "1.3.9",
|
"version": "1.4.0",
|
||||||
"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.9"
|
version = "1.4.0"
|
||||||
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.9",
|
"version": "1.4.0",
|
||||||
"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.9",
|
"version": "1.4.0",
|
||||||
"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.9",
|
"version": "1.4.0",
|
||||||
"publisher": "fedaykindev",
|
"publisher": "fedaykindev",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -66,7 +66,6 @@
|
|||||||
"command": "openchamber.focusChat",
|
"command": "openchamber.focusChat",
|
||||||
"title": "OpenChamber: Focus Chat"
|
"title": "OpenChamber: Focus Chat"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"command": "openchamber.restartApi",
|
"command": "openchamber.restartApi",
|
||||||
"title": "OpenChamber: Restart API Connection"
|
"title": "OpenChamber: Restart API Connection"
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ openchamber update # Update to latest version
|
|||||||
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
- Smart tool visualization (inline diffs, file trees, results highlighting)
|
||||||
- Rich permission cards with syntax-highlighted operation previews
|
- Rich permission cards with syntax-highlighted operation previews
|
||||||
- Per-agent permission modes (ask/allow/full) per session
|
- Per-agent permission modes (ask/allow/full) per session
|
||||||
|
- Multi-agent runs from a single prompt (isolated worktrees)
|
||||||
- Branchable conversations: start a new session from any assistant response
|
- Branchable conversations: start a new session from any assistant response
|
||||||
- Task tracker UI with live progress and tool summaries
|
- Task tracker UI with live progress and tool summaries
|
||||||
- Model selection UX: favorites, recents, and configurable tool output density
|
- Model selection UX: favorites, recents, and configurable tool output density
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openchamber/web",
|
"name": "@openchamber/web",
|
||||||
"version": "1.3.9",
|
"version": "1.4.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./server/index.js",
|
"main": "./server/index.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user