backlog.md 1.0.3 → 1.1.1

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -111,6 +111,7 @@ The web interface provides:
111
111
  | Web interface | `backlog browser` (launches web UI on port 6420) |
112
112
  | Web custom port | `backlog browser --port 8080 --no-open` |
113
113
  | Config editor | `backlog config set defaultEditor "code --wait"` |
114
+ | Enable auto-commit | `backlog config set autoCommit true` |
114
115
  | View config | `backlog config list` |
115
116
 
116
117
  Full help: `backlog --help`
@@ -138,9 +139,12 @@ Key options:
138
139
  | `default_port` | Web UI port | `6420` |
139
140
  | `auto_open_browser`| Open browser automatically | `true` |
140
141
  | `remote_operations`| Enable remote git operations | `true` |
142
+ | `auto_commit` | Automatically commit task changes | `false` |
141
143
 
142
144
  > **Note**: Set `remote_operations: false` to work offline. This disables git fetch operations and loads tasks from local branches only, useful when working without network connectivity.
143
145
 
146
+ > **Git Control**: By default, `auto_commit` is set to `false`, giving you full control over your git history. Task operations will modify files but won't automatically commit changes. Set `auto_commit: true` if you prefer automatic commits for each task operation.
147
+
144
148
  ---
145
149
 
146
150
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog.md",
3
- "version": "1.0.3",
3
+ "version": "1.1.1",
4
4
  "bin": {
5
5
  "backlog": "cli.js"
6
6
  },
@@ -8,11 +8,11 @@
8
8
  "blessed": "npm:neo-neo-bblessed@1.0.3"
9
9
  },
10
10
  "optionalDependencies": {
11
- "backlog.md-linux-x64": "1.0.3",
12
- "backlog.md-linux-arm64": "1.0.3",
13
- "backlog.md-darwin-x64": "1.0.3",
14
- "backlog.md-darwin-arm64": "1.0.3",
15
- "backlog.md-windows-x64": "1.0.3"
11
+ "backlog.md-linux-x64": "1.1.1",
12
+ "backlog.md-linux-arm64": "1.1.1",
13
+ "backlog.md-darwin-x64": "1.1.1",
14
+ "backlog.md-darwin-arm64": "1.1.1",
15
+ "backlog.md-windows-x64": "1.1.1"
16
16
  },
17
17
  "scripts": {
18
18
  "postuninstall": "node postuninstall.cjs"