Test
2c910779bf
style: format search title lookup
v0.20260408.640
2026-04-08 19:52:01 +02:00
Test
61309fef4b
fix: use h1 titles for displayed note names
2026-04-08 19:46:16 +02:00
Test
3b5435da90
fix: serialize single-item yaml lists as blocks
v0.20260408.639
2026-04-08 19:20:44 +02:00
Test
78fd4bb015
fix: require cmd-click for editor links
v0.20260408.638
2026-04-08 19:06:21 +02:00
Test
e8417906c4
docs: clarify CodeScene boy scout workflow
v0.20260408.637
2026-04-08 18:21:08 +02:00
Test
2fc9b4c31f
fix: isolate pre-push smoke server
v0.20260408.636
2026-04-08 18:01:02 +02:00
lucaronin
db1a99bc44
fix: isolate smoke lane dev server
v0.20260408.635
2026-04-08 15:22:53 +02:00
lucaronin
71d814700f
fix: restore tauri runtime compatibility
2026-04-08 14:42:43 +02:00
lucaronin
50f48b4379
fix: narrow commit url before opening
2026-04-08 14:11:59 +02:00
lucaronin
f471a9a0f1
refactor: improve CodeScene hotspot health
2026-04-08 14:01:19 +02:00
Test
cf0df62a16
test: keep the smoke gate on stable app flows
v0.20260408.634
2026-04-08 10:45:08 +02:00
Test
cfa07a82cc
test: stabilize smoke lane and timer-heavy tests
2026-04-08 10:22:47 +02:00
Test
6b1a44cdfd
test: stabilize the pre-push smoke lane
2026-04-08 10:01:34 +02:00
Test
c2366f2a3e
test: stabilize the smoke lane
2026-04-08 09:50:14 +02:00
Test
2d90b61a70
fix: stabilize note list hotspots
2026-04-08 09:18:59 +02:00
Test
0cf2467fbc
refactor: split note list hotspots
2026-04-08 09:03:02 +02:00
Test
4f54849991
docs: add ADRs 0046–0049 for starter vault clone, regex filters, relative date filters, per-note icon (guard — from commits b0950c92, c19cefe9, 58dfb039, 66a91274)
v0.20260408.633
2026-04-08 08:02:06 +02:00
Test
b0950c92c5
feat: clone the starter vault on demand
v0.20260407.632
2026-04-07 23:28:02 +02:00
Test
58dfb039ca
feat: support relative date view filters
v0.20260407.631
2026-04-07 23:02:55 +02:00
Test
c19cefe989
feat: add regex mode for view filters
v0.20260407.630
2026-04-07 22:51:23 +02:00
Test
e1771ed7e6
test: stabilize untitled draft title regression
v0.20260407.629
2026-04-07 22:45:55 +02:00
Test
9308493326
test: cover AI panel shortcut regression
v0.20260407.628
2026-04-07 22:35:32 +02:00
Test
951b15d603
fix: clear missing active vault paths
2026-04-07 22:35:04 +02:00
Test
93ef104413
fix: stop writing empty suggested properties
2026-04-07 22:34:33 +02:00
Test
dd18bac5ec
fix: tighten relationship chip typing
v0.20260407.627
2026-04-07 22:12:15 +02:00
Test
11f2dec3e9
feat: show icons on relationship chips
2026-04-07 22:09:21 +02:00
Test
b54a5a5ad2
fix: allow CodeScene recovery mode
2026-04-07 22:08:51 +02:00
Test
2bc560468d
fix: tighten note icon typing
v0.20260407.626
2026-04-07 21:11:20 +02:00
Test
66a9127430
feat: add note icon property support
2026-04-07 21:09:06 +02:00
Test
478ed789f8
fix: stop syncing title frontmatter on note open
v0.20260407.625
2026-04-07 20:43:13 +02:00
Test
95d75f7a7a
fix: avoid duplicate list property drag tab index
v0.20260407.624
2026-04-07 20:34:10 +02:00
Test
c56277add0
feat: customize inbox note list columns
2026-04-07 20:31:08 +02:00
Test
8df4730db6
fix: narrow deleted preview active tab path
v0.20260407.623
2026-04-07 20:10:13 +02:00
Test
e5f3bae8f3
feat: show deleted notes as restorable changes
2026-04-07 20:09:04 +02:00
Test
1f39501ce5
fix: keep view filter values as plain text
v0.20260407.622
2026-04-07 19:40:54 +02:00
Test
10024dbf53
test: slim the pre-push smoke lane
v0.20260407.621
2026-04-07 19:22:11 +02:00
Test
e52d07affc
chore: enforce main-only workflow and adopt AGENTS.md
2026-04-07 18:42:41 +02:00
Test
0d9af0fb0f
chore: ratchet CodeScene thresholds to 9.45/9.29
v0.20260407.620
2026-04-07 18:14:55 +02:00
Test
1ca2662a4b
style: satisfy rustfmt pre-push check
2026-04-07 17:52:13 +02:00
Test
eb2758c154
fix: correct editor breadcrumb props typing
2026-04-07 17:49:15 +02:00
Test
7d308a65e0
fix: hide title section for untitled drafts
2026-04-07 17:47:15 +02:00
Test
74850b5b69
docs: rewrite vault AGENTS.md template — vault-agnostic, H1-as-title convention
2026-04-07 16:09:18 +02:00
Test
e486e863ce
fix: open editor immediately when clicking suggested property slots
...
Previously, clicking a suggested property slot (Status, Date, URL) would add
an empty property to frontmatter but fail to open the editor. This was due
to a race condition where:
1. handleSuggestedAdd() called onAddProperty() which is async
2. The useEffect tried to detect when the property appeared in frontmatter
3. But frontmatter updates asynchronously after onAddProperty resolves
4. By the time frontmatter is updated, the useEffect had already run
The fix is to directly set the editing key immediately when clicking a
suggested slot, rather than relying on the useEffect to detect the property
being added. This is more reliable because we know we're adding the property
- we don't need to wait for it to appear in frontmatter.
2026-04-07 11:03:50 +02:00
Test
132618ebd3
docs: add/update ADRs for H1-as-title and Trash removal (guard — from commits 377a3f8d, 7daf6898, e581ad36)
2026-04-07 08:02:31 +02:00
Test
d29d5a03ae
chore: restore ui-design.pen (Pencil design file — not stale)
v0.20260406.619
2026-04-06 19:27:40 +02:00
Test
084c58fed8
docs: restore VISION.md — product vision, strategy and design principles
2026-04-06 19:26:48 +02:00
Test
63d85bf67f
chore: remove remaining stale screenshots
2026-04-06 19:25:03 +02:00
Test
17d67013dc
chore: remove stale docs and assets (PROJECT-SPEC, ROADMAP, VISION, Design System Proposal, iPad Prototype, screenshots, untitled notes, prompt.txt, ui-design.pen)
2026-04-06 19:18:15 +02:00
Test
458898f632
fix: suggested property slots now reliably open editor after click
...
Replace setTimeout-based editingKey activation with a useEffect that
watches propertyEntries. When the newly added property appears in
propertyEntries (after the async backend write completes), the effect
sets editingKey, ensuring the editor/picker opens regardless of timing.
The old setTimeout(fn, 0) approach raced with the async frontmatter
write — editingKey was set before the property existed in the DOM,
so the editing state had no matching PropertyRow to activate.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
v0.20260406.616
2026-04-06 16:31:51 +02:00
Test
89a605262c
docs: require completion comment on Todoist task before /laputa-done (QA, refactoring, ADRs, code health)
v0.20260406.615
2026-04-06 16:17:19 +02:00