Releases: martinappberg/chimaera
Releases · martinappberg/chimaera
Release list
chimaera v0.18.1
Update README.md Website URL update
chimaera v0.18.0
feat: chat-mode UX + resilience batch — queued delivery, quiet stop, …
chimaera v0.17.0
feat: file manager — right-click menus, create/rename/delete, downloa…
chimaera v0.16.1
fix: release connect deploys releases only; daemon refuses to double-…
chimaera v0.16.0
feat: recents replay full history; fix batch — remote clipboard, chat…
chimaera v0.15.1
fix: agent-first restructure (part 2) — module/UI splits, boundary de…
chimaera v0.15.0
feat: fix cornerstone launcher/window/remote bugs; add create-folder …
chimaera v0.14.0
feat: structured chat mode (Tier B) — rich chat UI for Claude Code & …
chimaera v0.13.0
feat: window titles name the workspace (and host, when remote) (#26) ## Problem Native windows were titled **"Sherlock — chimaera"** — just the host. With several remote windows open that's ambiguous, and the workspace (what you actually tell windows apart by) was missing entirely. The webview doesn't mirror `document.title` to the OS titlebar, so the native title was stuck at the Rust builder default. ## Change The title now leads with the workspace and adds the host **only when remote**: | context | title | |---|---| | remote, in a workspace | `crc_finish • Sherlock — chimaera` | | local, in a workspace | `crc_finish — chimaera` | | remote home | `Sherlock — chimaera` | | local home | `chimaera` | The SPA sets both `document.title` (browser tab) and — via a new `setNativeWindowTitle` in `native.ts` (a guarded Tauri `getCurrentWindow().setTitle` passthrough, no-op in a browser) — the native titlebar, in the existing title `$effect`, so it updates as you switch workspaces within a window. The unread-attention `(n)` prefix is preserved. ## Verified live Against the isolated daemon: - Local window → `document.title` = `priceless-euler-624d05 — chimaera` (no host). - Simulated remote (host = Sherlock) → `priceless-euler-624d05 • Sherlock — chimaera`. - No console errors. `svelte-check` clean; no Rust changed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
chimaera v0.12.0
feat: per-agent binary settings, shim-only-when-managed, and managed …