kandown 0.21.7 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.22.0 — 2026-07-20 — "Sectioned List View"
4
+
5
+ - **Added**: **Sectioned List View** — rebuilt the web List view so board columns such as Backlog, Todo, In Progress, Review, and Done are displayed as horizontal task sections stacked vertically. This keeps the dense list/table workflow while making the List view match the mental model of the Kanban board in the opposite orientation.
6
+ - **Added**: **Vertical Section Drag-and-Drop** — added gripper-based drag-and-drop for List view sections. Reordering sections persists through the existing `reorderColumns` store action, so the same column order is shared by Board view, List view, config, and future reloads.
7
+ - **Added**: **Task Drag-and-Drop Between List Sections** — task rows in List view can now be dragged between sections to change their status. Drops reuse the existing `moveTask` persistence path, including dependency gates, optimistic updates, rollback behavior, and markdown frontmatter writes.
8
+ - **Changed**: **List View Layout** — replaced the previous single flat table with per-column section headers, task counts, repeated metadata headers, section drop guides, and empty-section drop targets. Search, filters, due-date summaries, metadata columns, drawer opening, and search-preview snippets continue to work inside the new sectioned layout.
9
+ - **Fixed**: **Scripted CLI Commands Exit Cleanly** — one-shot commands such as `kandown doctor` and `kandown list --json` now terminate explicitly after their handler finishes. This prevents passive bundled dependency handles from keeping scripted commands alive after successful output, preserving reliable CI and agent pipeline behavior.
10
+
3
11
  ## 0.21.7 — 2026-07-20 — "Web UI Vector Logo & CLI Changelog Fix"
4
12
 
5
13
  - **Added**: **Vector Brand Logo Component (`LogoSvg.tsx`)** — unified header and empty state UI components to render the official multi-color brand vector logo from `logo.svg`.
package/README.md CHANGED
@@ -169,7 +169,7 @@ Interactive runs of `kandown` check npm for updates at most once every 24 hours
169
169
  | Feature | Description |
170
170
  |---|---|
171
171
  | Board view | Horizontal kanban with drag-and-drop |
172
- | List view | Dense table with filters & search |
172
+ | List view | Sectioned vertical list with filters, search, and drag-and-drop between statuses |
173
173
  | Content search | Search titles, body, subtasks, tags, assignee, priority |
174
174
  | Command palette | `⌘K` / `Ctrl+K` for quick actions |
175
175
  | Custom columns | Add, rename, delete columns freely |
package/bin/kandown.js CHANGED
@@ -3228,3 +3228,12 @@ switch (cmd) {
3228
3228
  help();
3229
3229
  process.exit(1);
3230
3230
  }
3231
+
3232
+ // 📖 Some bundled/imported dependencies can leave passive handles alive even
3233
+ // after a one-shot CLI command has finished its synchronous work. Scripted
3234
+ // commands must be pipeline-safe, so terminate explicitly once their handler
3235
+ // returns. The daemon runner, MCP server, and interactive TUI paths are the
3236
+ // long-lived exceptions.
3237
+ if (SCRIPTED_COMMANDS.has(cmd) && !(cmd === 'daemon' && rest[0] === 'run')) {
3238
+ process.exit(0);
3239
+ }