diff --git a/CHANGELOG.md b/CHANGELOG.md index acea3488..6edb2e5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,25 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -- Chat: the `/` command menu no longer lists a skill twice when a command shares its name. +## [1.17.2] - 2026-08-01 + +- **Mobile:** rebuilt the app navigation around two swipe drawers — a sessions drawer (left) with a cross-project tree, swipe actions to rename, archive, or delete sessions, and a workspace drawer (right) with Changes, Files, Terminal, Notes, and MCP tabs. Tapping the session title in the header switches recents from a compact overlay with live status indicators. Cold launches reopen the last active session and land on an explicit connect screen on failure instead of flashing an empty draft. +- **Desktop/Windows:** added Windows ARM64 support (thanks to @airtaxi). +- UI: a new OpenChamber theme (dark and light) is now the default, replacing the previous default theme. +- Desktop: the active session header now has a menu with rename, share, export, archive, delete, and copy-ID actions; share links copy to the clipboard automatically when created. +- Performance: opening the first session after startup is faster — background startup requests no longer queue ahead of the initial message load (thanks to @yulia-ivashko). +- Sessions: a root session can now be moved with all its sub-sessions into a new worktree directly from the header menu. +- Git/Diff: symlinks now appear as link entries in the diff view instead of showing their file content. +- Desktop/Linux: added a Window Controls Style setting to switch between classic rectangular buttons and macOS-style traffic lights (thanks to @kydorn). +- Files: added a global Auto-save setting under Settings → General; binary, PDF, and Office files are excluded from auto-save (thanks to @makeittech). +- Terminal: switching terminal tabs no longer rebuilds the connection from scratch on each open or switch (thanks to @makeittech). +- Sidebar: sessions with active agents now show a live activity indicator even when the sidebar is collapsed (thanks to @pascalandr). +- VSCode: per-session permission auto-accept now replies to live permission requests correctly when auto-accept is turned on. +- Usage: all Z.ai usage windows now appear in the usage view. +- Chat: tool descriptions now show the glob pattern when a tool's input uses one. +- Desktop: sticky session headers in the sidebar no longer blink or shift position during page transitions (thanks to @ChangeHow). +- Chat: clicking in the padding area of the composer now correctly places the cursor (thanks to @IbrahimKhan12). +- Chat: the `/` command menu no longer lists a skill twice when a command shares its name (thanks to @IbrahimKhan12). ## [1.17.1] - 2026-07-29 diff --git a/bun.lock b/bun.lock index 19dcc988..070da26b 100644 --- a/bun.lock +++ b/bun.lock @@ -30,7 +30,7 @@ "@heroui/theme": "^2.4.23", "@lezer/highlight": "^1.2.3", "@octokit/rest": "^22.0.1", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@radix-ui/react-collapsible": "^1.1.12", "@radix-ui/react-dialog": "^1.1.15", "@radix-ui/react-dropdown-menu": "^2.1.16", @@ -168,7 +168,7 @@ "@dnd-kit/sortable": "^10.0.0", "@dnd-kit/utilities": "^3.2.2", "@lezer/highlight": "^1.2.3", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@pierre/diffs": "1.3.0-beta.6", "@replit/codemirror-vim": "^6.3.0", "@simplewebauthn/browser": "13.3.0", @@ -242,7 +242,7 @@ "version": "1.17.1", "dependencies": { "@openchamber/ui": "workspace:*", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "adm-zip": "^0.5.16", "jsonc-parser": "^3.3.1", "react": "^19.1.1", @@ -269,7 +269,7 @@ "dependencies": { "@clack/prompts": "^1.1.0", "@octokit/rest": "^22.0.1", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@simplewebauthn/server": "13.3.1", "adm-zip": "^0.5.16", "better-sqlite3": "^12.10.0", @@ -1000,7 +1000,7 @@ "@openchamber/web": ["@openchamber/web@workspace:packages/web"], - "@opencode-ai/sdk": ["@opencode-ai/sdk@1.18.9", "", { "dependencies": { "cross-spawn": "7.0.6" } }, "sha512-oDJSmsmiGW+3lNLmZYj3EpUkpiT3ITZBKffH3mrmu2KMJXlkxQ/Nvv7jqPffSM7o8lCdBZS/aCE+2GkA3/92gQ=="], + "@opencode-ai/sdk": ["@opencode-ai/sdk@1.18.11", "", { "dependencies": { "cross-spawn": "7.0.6" } }, "sha512-yDImmNv4PhxdMgtiHVNWQWEVwQlAm7Dr0y4XU7CT4dOIbzgO+VP+9I02lAP7Zva1FhGeyI7oKMI2tzB9RUsWaQ=="], "@paralleldrive/cuid2": ["@paralleldrive/cuid2@2.3.1", "", { "dependencies": { "@noble/hashes": "^1.1.5" } }, "sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw=="], diff --git a/package.json b/package.json index ededbc01..31f9c141 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.17.1", + "version": "1.17.2", "description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes", "private": true, "type": "module", @@ -109,7 +109,7 @@ "@heroui/theme": "^2.4.23", "@lezer/highlight": "^1.2.3", "@octokit/rest": "^22.0.1", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@radix-ui/react-collapsible": "^1.1.12", "@radix-ui/react-dialog": "^1.1.15", "@radix-ui/react-dropdown-menu": "^2.1.16", diff --git a/packages/electron/package.json b/packages/electron/package.json index 40a32331..1ba7d13b 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/electron", - "version": "1.17.1", + "version": "1.17.2", "private": true, "description": "Electron desktop runtime for OpenChamber", "author": "OpenChamber", diff --git a/packages/ui/package.json b/packages/ui/package.json index 3e495b53..060f392c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.17.1", + "version": "1.17.2", "private": true, "type": "module", "main": "src/main.tsx", @@ -43,7 +43,7 @@ "@dnd-kit/sortable": "^10.0.0", "@dnd-kit/utilities": "^3.2.2", "@lezer/highlight": "^1.2.3", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@pierre/diffs": "1.3.0-beta.6", "@replit/codemirror-vim": "^6.3.0", "@simplewebauthn/browser": "13.3.0", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 94654376..e8b77d20 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.17.2] - 2026-08-01 + +- Per-session permission auto-accept now replies to live permission requests correctly when auto-accept is turned on. +- Chat: messages arriving at the start of the SSE stream no longer drop silently after initial connection. +- Sessions with active agents now show a live activity indicator even when the sidebar is collapsed (thanks to @pascalandr). +- Usage: all Z.ai usage windows now appear in the usage view. +- Chat: tool descriptions now show the glob pattern when a tool's input uses one. +- Chat: clicking in the padding area of the composer now correctly places the cursor (thanks to @IbrahimKhan12). +- Chat: the `/` command menu no longer lists a skill twice when a command shares its name (thanks to @IbrahimKhan12). + ## [1.17.1] - 2026-07-29 - **Chat tools:** Bash tool cards now show output before a command finishes, keep it in a fixed-height pane, and follow new lines until you scroll away. Long-running commands no longer remain at a 300-second duration, and their timers continue until they finish. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 8d76fac5..d66c18a2 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "%extension.description%", - "version": "1.17.1", + "version": "1.17.2", "publisher": "fedaykindev", "private": true, "repository": { @@ -244,7 +244,7 @@ }, "dependencies": { "@openchamber/ui": "workspace:*", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "adm-zip": "^0.5.16", "jsonc-parser": "^3.3.1", "react": "^19.1.1", diff --git a/packages/web/package.json b/packages/web/package.json index 0c77849f..7380dd7d 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.17.1", + "version": "1.17.2", "private": false, "type": "module", "main": "./server/index.js", @@ -25,7 +25,7 @@ "dependencies": { "@clack/prompts": "^1.1.0", "@octokit/rest": "^22.0.1", - "@opencode-ai/sdk": "1.18.9", + "@opencode-ai/sdk": "1.18.11", "@simplewebauthn/server": "13.3.1", "adm-zip": "^0.5.16", "better-sqlite3": "^12.10.0",