beads-ui 0.5.0 → 0.7.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/CHANGES.md +42 -0
- package/README.md +4 -2
- package/app/main.bundle.js +232 -203
- package/app/main.bundle.js.map +3 -3
- package/app/protocol.js +5 -2
- package/app/styles.css +64 -0
- package/package.json +1 -1
- package/server/bd.js +32 -0
- package/server/cli/commands.js +14 -4
- package/server/cli/daemon.js +11 -2
- package/server/cli/index.js +29 -11
- package/server/cli/usage.js +5 -3
- package/server/config.js +2 -1
- package/server/index.js +10 -0
- package/server/ws.js +73 -1
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
- [`255845f`](https://github.com/mantoni/beads-ui/commit/255845fd49a1e830dd56404d4d49d71c4f3bd18f)
|
|
6
|
+
feat: add comments to issue detail view (Frederic Haddad)
|
|
7
|
+
>
|
|
8
|
+
> - Add get-comments and add-comment WebSocket handlers
|
|
9
|
+
> - Display comments with author and timestamp in detail view
|
|
10
|
+
> - Add comment input form with Ctrl+Enter submit
|
|
11
|
+
> - Auto-fill author from git config user.name
|
|
12
|
+
> - Fetch comments when loading issue details
|
|
13
|
+
>
|
|
14
|
+
> 🤖 Generated with [Claude Code](https://claude.com/claude-code)
|
|
15
|
+
>
|
|
16
|
+
> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
|
17
|
+
>
|
|
18
|
+
- [`a296e98`](https://github.com/mantoni/beads-ui/commit/a296e98dadb59d989cf2acac15666c0d38c635d6)
|
|
19
|
+
Add CHANGES.md to prettier ignore
|
|
20
|
+
|
|
21
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-12-19._
|
|
22
|
+
|
|
23
|
+
## 0.6.0
|
|
24
|
+
|
|
25
|
+
- [`2e25941`](https://github.com/mantoni/beads-ui/commit/2e259418ab24367468daa4449833550f1e9cb297)
|
|
26
|
+
feat(cli): add --host and --port options (cc-vps)
|
|
27
|
+
>
|
|
28
|
+
> Add CLI options to configure the server bind address and port,
|
|
29
|
+
> making it easier to expose the UI on different network interfaces
|
|
30
|
+
> or run multiple instances on different ports.
|
|
31
|
+
>
|
|
32
|
+
> - Add --host <addr> option (default: 127.0.0.1)
|
|
33
|
+
> - Add --port <num> option (default: 3000)
|
|
34
|
+
> - Support HOST and PORT environment variables
|
|
35
|
+
> - Parse --host/--port in server/index.js for dev workflow
|
|
36
|
+
> - Add test coverage for new options
|
|
37
|
+
>
|
|
38
|
+
> Co-authored-by: Christian Catalan <crcatala@gmail.com>
|
|
39
|
+
>
|
|
40
|
+
- [`6327f77`](https://github.com/mantoni/beads-ui/commit/6327f779f7b6ad7d274a37168320442bf013b4e0)
|
|
41
|
+
Fix GitHub action commands
|
|
42
|
+
|
|
43
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-12-17._
|
|
44
|
+
|
|
3
45
|
## 0.5.0
|
|
4
46
|
|
|
5
47
|
- [`76964c1`](https://github.com/mantoni/beads-ui/commit/76964c1daf133dded6b8f335cfe9d3184ac96a18)
|
package/README.md
CHANGED
|
@@ -52,8 +52,10 @@ See `bdui --help` for options.
|
|
|
52
52
|
- `BD_BIN`: path to the `bd` binary.
|
|
53
53
|
- `BDUI_RUNTIME_DIR`: override runtime directory for PID/logs. Defaults to
|
|
54
54
|
`$XDG_RUNTIME_DIR/beads-ui` or the system temp dir.
|
|
55
|
-
- `
|
|
56
|
-
|
|
55
|
+
- `HOST`: overrides the bind address (default `127.0.0.1`).
|
|
56
|
+
- `PORT`: overrides the listen port (default `3000`).
|
|
57
|
+
|
|
58
|
+
These can also be set via CLI options: `bdui start --host 0.0.0.0 --port 8080`
|
|
57
59
|
|
|
58
60
|
## Platform notes
|
|
59
61
|
|