update changelog for pql restructure, tree-sitter fix, files.read
test / unit + widget + golden + a11y (push) Failing after 28s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-04-23 21:26:03 +02:00
co-authored by Claude
parent bfd304a3f9
commit 2f7f797288
+15 -1
View File
@@ -84,6 +84,13 @@ heading, and (b) bumping `pubspec.yaml` `version:` in the same commit.
`clideFontBadge` (11) for sidebar metadata and status badges.
`clideLineHeight` (1.25) applied app-wide via `DefaultTextStyle`.
- `files.read` IPC command for reading file content by path.
- pql sidebar restructured: Search tab (PQL DSL query) is the
default left tab; Markdown tab (filtered to `.md` files) on the
right. Clicking a markdown file opens it in the context panel
markdown viewer with bidirectional focus highlighting.
- Graph view in context panel — lists files with inbound/outbound
link counts from `pql search --connections` (T-39).
@@ -113,7 +120,8 @@ heading, and (b) bumping `pubspec.yaml` `version:` in the same commit.
`clideFontMono` to match surrounding text weight.
- Default sidebar and context panel widths widened to 400px and
420px respectively (previous maximums).
420px respectively (previous maximums). Context panel max raised
to 1000px.
- Ticket descriptions render through ClideMarkdown instead of plain
text, with clickable DQRT record links.
@@ -121,6 +129,12 @@ heading, and (b) bumping `pubspec.yaml` `version:` in the same commit.
- Decision detail view subscribes to the message bus for navigation
(same pattern as tickets), enabling navigation from any source.
- TreeSitterService is now a shared singleton — eliminates native
double-free crashes from multiple WASM engine instances.
- Code block syntax highlighting fixes overlapping tree-sitter spans
that caused duplicated text (e.g. `makemake` instead of `make`).
- Context panel drag resize fixed — dragging left now correctly
grows the right panel instead of shrinking it.