backlog.md-darwin-arm64 1.9.1 → 1.9.2

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.
Files changed (3) hide show
  1. package/README.md +25 -21
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,6 @@
13
13
  > **Backlog.md** turns any folder with a Git repo into a **self‑contained project board**
14
14
  > powered by plain Markdown files and a zero‑config CLI.
15
15
 
16
-
17
16
  ## Features
18
17
 
19
18
  * 📝 **Markdown-native tasks** -- manage every issue as a plain `.md` file
@@ -150,15 +149,20 @@ When re-initializing an existing project, all current configuration values are p
150
149
  | Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
151
150
  | Archive | `backlog task archive 7` |
152
151
 
153
- #### Multi-line descriptions
152
+ #### Multiline input (description/plan/notes)
154
153
 
155
- The CLI preserves literal newline characters; `\n` sequences are not converted. To enter multi-paragraph text:
154
+ The CLI preserves input literally; `\n` sequences are not auto‑converted. Use one of the following to insert real newlines:
156
155
 
157
- - **Bash/Zsh**: `backlog task create "Feature" --desc $'Line1\nLine2\n\nFinal paragraph'`
158
- - **POSIX sh**: `backlog task create "Feature" --desc "$(printf 'Line1\nLine2\n\nFinal paragraph')"`
159
- - **PowerShell**: `backlog task create "Feature" --desc "Line1`nLine2`n`nFinal paragraph"`
156
+ - **Bash/Zsh (ANSI‑C quoting)**
157
+ - Description: `backlog task create "Feature" --desc $'Line1\nLine2\n\nFinal paragraph'`
158
+ - Plan: `backlog task edit 7 --plan $'1. Research\n2. Implement'`
159
+ - Notes: `backlog task edit 7 --notes $'Completed A\nWorking on B'`
160
+ - **POSIX sh (printf)**
161
+ - `backlog task create "Feature" --desc "$(printf 'Line1\nLine2\n\nFinal paragraph')"`
162
+ - **PowerShell (backtick)**
163
+ - `backlog task create "Feature" --desc "Line1`nLine2`n`nFinal paragraph"`
160
164
 
161
- The CLI help displays the Bash example with escaped `\\n` sequences; when typing the command, use a single `\n` to insert a newline.
165
+ Tip: Help text shows Bash examples with escaped `\\n` for readability; when typing, `$'\n'` expands to a newline.
162
166
 
163
167
  ### Draft Workflow
164
168
 
@@ -305,26 +309,26 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
305
309
 
306
310
  <!-- BOARD_START -->
307
311
 
308
- ## 📊 Backlog.md Project Status (v1.9.0)
312
+ ## 📊 Backlog.md Project Status (v1.9.1)
309
313
 
310
314
  This board was automatically generated by [Backlog.md](https://backlog.md)
311
315
 
312
- Generated on: 2025-09-03 21:26:52
316
+ Generated on: 2025-09-03 21:39:31
313
317
 
314
318
  | To Do | In Progress | Done |
315
319
  | --- | --- | --- |
316
- | **TASK-247** - Web UI - Read-only Description with Edit Toggle (Hide Editor Mode Buttons)<br>*#web-ui #editor #ux* | └─ **TASK-24.1** - CLI: Kanban board milestone view [@codex] | **TASK-236** - Fix TUI Unicode rendering for CJK (Chinese shows as ?) [@codex]<br>*#tui #bug #unicode* |
317
- | **TASK-248** - Circular navigation in TUI list and Kanban board<br>*#ui #tui #kanban* | | **TASK-246** - Domain: split Description/Plan/Notes into first-party Task fields [@codex]<br>*#domain #parsing #web-ui #tui* |
318
- | **TASK-244** - TUI: add live updates via watch in task list and kanban [@codex]<br>*#tui #watcher #enhancement* | | **TASK-227** - Web UI: interactive acceptance criteria editor [@codex]<br>*#web-ui #enhancement* |
319
- | **TASK-218** - Update documentation and tests for sequences<br>*#sequences #documentation #testing* | | **TASK-245** - Fix case-insensitive priority filtering [@codex] |
320
- | **TASK-217** - Create web UI for sequences with drag-and-drop<br>*#sequences #web-ui #frontend* | | └─ **TASK-217.01** - Sequences server: endpoints for list and move [@codex]<br>*#sequences* |
321
- | └─ **TASK-217.03** - Sequences web UI: move tasks and update dependencies<br>*#sequences* | | **TASK-215** - Implement TUI view for sequences<br>*#sequences #tui #ui* |
322
- | └─ **TASK-217.04** - Sequences web UI: tests<br>*#sequences* | | └─ **TASK-215.05** - TUI sequences: tests and stability [@codex]<br>*#sequences* |
323
- | └─ **TASK-217.02** - Sequences web UI: list sequences<br>*#sequences* | | └─ **TASK-215.04** - TUI sequences: create new sequences via drop positions [@codex]<br>*#sequences* |
324
- | **TASK-242** - Centralize task filtering logic to eliminate duplication [@codex]<br>*#refactoring #backend #cli* | | └─ **TASK-215.03** - TUI sequences: move tasks with dependency updates [@codex]<br>*#sequences* |
325
- | **TASK-241** - Consolidate assignee normalization into helper [@codex] | | └─ **TASK-215.02** - TUI sequences: navigation and detail view [@codex]<br>*#sequences* |
326
- | **TASK-243** - Enable TUI task reordering with Shift+Arrow keys [@codex]<br>*#tui #ui #enhancement* | | **TASK-214** - Add CLI command to list sequences [@codex]<br>*#sequences #cli* |
327
- | **TASK-213** - Compute sequences from task dependencies<br>*#sequences #core* | | **TASK-234** - Investigate newline handling in CLI descriptions [@codex]<br>*#cli #bug #ux* |
320
+ | **TASK-247** - Web UI - Read-only Description with Edit Toggle (Hide Editor Mode Buttons)<br>*#web-ui #editor #ux* | └─ **TASK-24.1** - CLI: Kanban board milestone view [@codex] | **TASK-234** - Investigate newline handling in CLI descriptions [@codex]<br>*#cli #bug #ux* |
321
+ | **TASK-248** - Circular navigation in TUI list and Kanban board<br>*#ui #tui #kanban* | | **TASK-236** - Fix TUI Unicode rendering for CJK (Chinese shows as ?) [@codex]<br>*#tui #bug #unicode* |
322
+ | **TASK-244** - TUI: add live updates via watch in task list and kanban [@codex]<br>*#tui #watcher #enhancement* | | **TASK-246** - Domain: split Description/Plan/Notes into first-party Task fields [@codex]<br>*#domain #parsing #web-ui #tui* |
323
+ | **TASK-218** - Update documentation and tests for sequences<br>*#sequences #documentation #testing* | | **TASK-227** - Web UI: interactive acceptance criteria editor [@codex]<br>*#web-ui #enhancement* |
324
+ | **TASK-217** - Create web UI for sequences with drag-and-drop<br>*#sequences #web-ui #frontend* | | **TASK-245** - Fix case-insensitive priority filtering [@codex] |
325
+ | └─ **TASK-217.03** - Sequences web UI: move tasks and update dependencies<br>*#sequences* | | └─ **TASK-217.01** - Sequences server: endpoints for list and move [@codex]<br>*#sequences* |
326
+ | └─ **TASK-217.04** - Sequences web UI: tests<br>*#sequences* | | **TASK-215** - Implement TUI view for sequences<br>*#sequences #tui #ui* |
327
+ | └─ **TASK-217.02** - Sequences web UI: list sequences<br>*#sequences* | | └─ **TASK-215.05** - TUI sequences: tests and stability [@codex]<br>*#sequences* |
328
+ | **TASK-242** - Centralize task filtering logic to eliminate duplication [@codex]<br>*#refactoring #backend #cli* | | └─ **TASK-215.04** - TUI sequences: create new sequences via drop positions [@codex]<br>*#sequences* |
329
+ | **TASK-241** - Consolidate assignee normalization into helper [@codex] | | └─ **TASK-215.03** - TUI sequences: move tasks with dependency updates [@codex]<br>*#sequences* |
330
+ | **TASK-243** - Enable TUI task reordering with Shift+Arrow keys [@codex]<br>*#tui #ui #enhancement* | | └─ **TASK-215.02** - TUI sequences: navigation and detail view [@codex]<br>*#sequences* |
331
+ | **TASK-213** - Compute sequences from task dependencies<br>*#sequences #core* | | **TASK-214** - Add CLI command to list sequences [@codex]<br>*#sequences #cli* |
328
332
  | └─ **TASK-215.01** - TUI sequences: read-only view<br>*#sequences* | | **TASK-232** - Nix build fails due to missing libstdc++.so.6 |
329
333
  | **TASK-240** - Improve binary resolution on Apple Silicon (Rosetta/arch mismatch) [@codex]<br>*#packaging #bug #macos* | | **TASK-231** - Fix case-insensitive status grouping and status normalization [@codex] |
330
334
  | **TASK-239** - Feature: Auto-link tasks to documents/decisions + backlinks [@codex]<br>*#web #enhancement #docs* | | **TASK-230** - Add --plain to task create/edit and print plain details after operation [@codex]<br>*#cli #plain-output* |
package/backlog CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog.md-darwin-arm64",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},