Skip to content

Releases: martinappberg/chimaera

chimaera v0.18.1

Choose a tag to compare

@github-actions github-actions released this 11 Jul 17:50
e489908
Update README.md

Website URL update

chimaera v0.18.0

Choose a tag to compare

@github-actions github-actions released this 11 Jul 11:17
5406ccb
feat: chat-mode UX + resilience batch — queued delivery, quiet stop, …

chimaera v0.17.0

Choose a tag to compare

@github-actions github-actions released this 10 Jul 19:55
5c33892
feat: file manager — right-click menus, create/rename/delete, downloa…

chimaera v0.16.1

Choose a tag to compare

@github-actions github-actions released this 10 Jul 05:15
4d0fbd9
fix: release connect deploys releases only; daemon refuses to double-…

chimaera v0.16.0

Choose a tag to compare

@github-actions github-actions released this 10 Jul 04:38
959c346
feat: recents replay full history; fix batch — remote clipboard, chat…

chimaera v0.15.1

Choose a tag to compare

@github-actions github-actions released this 09 Jul 17:02
36d6937
fix: agent-first restructure (part 2) — module/UI splits, boundary de…

chimaera v0.15.0

Choose a tag to compare

@github-actions github-actions released this 09 Jul 02:55
5c9e806
feat: fix cornerstone launcher/window/remote bugs; add create-folder …

chimaera v0.14.0

Choose a tag to compare

@github-actions github-actions released this 09 Jul 02:26
c946368
feat: structured chat mode (Tier B) — rich chat UI for Claude Code & …

chimaera v0.13.0

Choose a tag to compare

@github-actions github-actions released this 08 Jul 23:08
87934c1
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

Choose a tag to compare

@github-actions github-actions released this 08 Jul 23:03
c0dd7b6
feat: per-agent binary settings, shim-only-when-managed, and managed …