backlog.md-darwin-arm64 1.9.0 → 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 +38 -11
  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,6 +149,21 @@ 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
 
152
+ #### Multi‑line input (description/plan/notes)
153
+
154
+ The CLI preserves input literally; `\n` sequences are not auto‑converted. Use one of the following to insert real newlines:
155
+
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"`
164
+
165
+ Tip: Help text shows Bash examples with escaped `\\n` for readability; when typing, `$'\n'` expands to a newline.
166
+
153
167
  ### Draft Workflow
154
168
 
155
169
  | Action | Example |
@@ -295,22 +309,35 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
295
309
 
296
310
  <!-- BOARD_START -->
297
311
 
298
- ## 📊 Backlog.md Project Status (v1.8.3)
312
+ ## 📊 Backlog.md Project Status (v1.9.1)
299
313
 
300
314
  This board was automatically generated by [Backlog.md](https://backlog.md)
301
315
 
302
- Generated on: 2025-08-17 15:05:53
316
+ Generated on: 2025-09-03 21:39:31
303
317
 
304
318
  | To Do | In Progress | Done |
305
319
  | --- | --- | --- |
306
- | **TASK-228** - Replace @uiw/react-md-editor with TOAST UI Editor for rich-text editing<br>*#web-ui #enhancement #editor* | └─ **TASK-24.1** - CLI: Kanban board milestone view [@codex] | **TASK-232** - Nix build fails due to missing libstdc++.so.6 |
307
- | **TASK-227** - Web UI: interactive acceptance criteria editor<br>*#web-ui #enhancement* | | **TASK-231** - Fix case-insensitive status grouping and status normalization [@codex] |
308
- | **TASK-222** - Improve task and subtask visualization in web UI | | **TASK-230** - Add --plain to task create/edit and print plain details after operation [@codex]<br>*#cli #plain-output* |
309
- | **TASK-217** - Create web UI for sequences with drag-and-drop<br>*#sequences #web-ui #frontend* | | **TASK-226** - CLI: per-index add/remove of acceptance criteria<br>*#cli #enhancement* |
310
- | **TASK-216** - Add server API endpoints and web UI for sequences<br>*#sequences #api #backend #web-ui #frontend* | | **TASK-225** - Fix CLI board command ignoring checkActiveBranches config setting<br>*#bug #performance* |
311
- | **TASK-215** - Implement TUI view for sequences<br>*#sequences #tui #ui* | | |
312
- | **TASK-214** - Add CLI command to list sequences (plain text output)<br>*#sequences #cli* | | |
313
- | **TASK-213** - Compute sequences from task dependencies<br>*#sequences #core* | | |
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* |
332
+ | └─ **TASK-215.01** - TUI sequences: read-only view<br>*#sequences* | | **TASK-232** - Nix build fails due to missing libstdc++.so.6 |
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] |
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* |
335
+ | **TASK-238** - Fix web editor selection/cursor issues (MDEditor integration) [@codex]<br>*#web #bug #editor* | | |
336
+ | **TASK-237** - Fix invalid git ref 'origin/origin' during remote task loading [@codex]<br>*#git #bug #remote* | | |
337
+ | **TASK-235** - Fix duplicate Acceptance Criteria sections in tasks [@codex]<br>*#cli #bug* | | |
338
+ | **TASK-233** - MVP: Live task watcher in TUI (Bun.watch) [@codex]<br>*#tui #watcher #mvp* | | |
339
+ | **TASK-228** - Replace @uiw/react-md-editor with TOAST UI Editor for rich-text editing<br>*#web-ui #enhancement #editor* | | |
340
+ | **TASK-222** - Improve task and subtask visualization in web UI | | |
314
341
  | **TASK-208** - Add paste-as-markdown support in Web UI<br>*#web-ui #enhancement #markdown* | | |
315
342
  | **TASK-200** - Add Claude Code integration with workflow commands during init<br>*#enhancement #developer-experience* | | |
316
343
 
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.0",
3
+ "version": "1.9.2",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},