backlog.md-darwin-arm64 1.5.10 → 1.6.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.
Files changed (3) hide show
  1. package/README.md +14 -2
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -158,6 +158,12 @@ When re-initializing an existing project, all current configuration values are p
158
158
  | Export board | `backlog board export [file]` (exports Kanban board to markdown) |
159
159
  | Export with version | `backlog board export --export-version "v1.0.0"` (includes version in export) |
160
160
 
161
+ ### Statistics & Overview
162
+
163
+ | Action | Example |
164
+ |-------------|------------------------------------------------------|
165
+ | Project overview | `backlog overview` (interactive TUI showing project statistics) |
166
+
161
167
  ### Web Interface
162
168
 
163
169
  | Action | Example |
@@ -216,6 +222,8 @@ Backlog.md merges the following layers (highest → lowest):
216
222
  | Set config value | `backlog config set defaultEditor "code --wait"` |
217
223
  | Enable auto-commit | `backlog config set autoCommit true` |
218
224
  | Bypass git hooks | `backlog config set bypassGitHooks true` |
225
+ | Enable cross-branch check | `backlog config set checkActiveBranches true` |
226
+ | Set active branch days | `backlog config set activeBranchDays 30` |
219
227
 
220
228
  ### Available Configuration Options
221
229
 
@@ -232,6 +240,8 @@ Backlog.md merges the following layers (highest → lowest):
232
240
  | `autoCommit` | Automatically commit task changes | `false` |
233
241
  | `bypassGitHooks` | Skip git hooks when committing (uses --no-verify) | `false` |
234
242
  | `zeroPaddedIds` | Pad all IDs (tasks, docs, etc.) with leading zeros | `(disabled)` |
243
+ | `checkActiveBranches` | Check task states across active branches for accuracy | `true` |
244
+ | `activeBranchDays` | How many days a branch is considered active | `30` |
235
245
 
236
246
  > **Note**: Set `remoteOperations: false` to work offline. This disables git fetch operations and loads tasks from local branches only, useful when working without network connectivity.
237
247
 
@@ -239,6 +249,8 @@ Backlog.md merges the following layers (highest → lowest):
239
249
 
240
250
  > **Git Hooks**: If you have pre-commit hooks (like conventional commits or linters) that interfere with backlog.md's automated commits, set `bypassGitHooks: true` to skip them using the `--no-verify` flag.
241
251
 
252
+ > **Performance**: Cross-branch checking ensures accurate task tracking across all active branches but may impact performance on large repositories. You can disable it by setting `checkActiveBranches: false` for maximum speed, or adjust `activeBranchDays` to control how far back to look for branch activity (lower values = better performance).
253
+
242
254
  ---
243
255
 
244
256
  ## <img src="./.github/sharing-export-256.png" alt="Sharing & Export" width="28" height="28" align="center"> Sharing & Export
@@ -271,11 +283,11 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
271
283
 
272
284
  <!-- BOARD_START -->
273
285
 
274
- ## 📊 Backlog.md Project Status (v1.5.9)
286
+ ## 📊 Backlog.md Project Status (v1.5.10)
275
287
 
276
288
  This board was automatically generated by [Backlog.md](https://backlog.md)
277
289
 
278
- Generated on: 2025-07-26 14:59:23
290
+ Generated on: 2025-07-26 15:40:16
279
291
 
280
292
  | To Do | In Progress | Done |
281
293
  | --- | --- | --- |
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.5.10",
3
+ "version": "1.6.0",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},