beads-ui 0.4.4 → 0.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.
package/CHANGES.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # Changes
2
2
 
3
+ ## 0.6.0
4
+
5
+ - [`2e25941`](https://github.com/mantoni/beads-ui/commit/2e259418ab24367468daa4449833550f1e9cb297)
6
+ feat(cli): add --host and --port options (cc-vps)
7
+ >
8
+ > Add CLI options to configure the server bind address and port,
9
+ > making it easier to expose the UI on different network interfaces
10
+ > or run multiple instances on different ports.
11
+ >
12
+ > - Add --host <addr> option (default: 127.0.0.1)
13
+ > - Add --port <num> option (default: 3000)
14
+ > - Support HOST and PORT environment variables
15
+ > - Parse --host/--port in server/index.js for dev workflow
16
+ > - Add test coverage for new options
17
+ >
18
+ > Co-authored-by: Christian Catalan <crcatala@gmail.com>
19
+ >
20
+ - [`6327f77`](https://github.com/mantoni/beads-ui/commit/6327f779f7b6ad7d274a37168320442bf013b4e0)
21
+ Fix GitHub action commands
22
+
23
+ _Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-12-17._
24
+
25
+ ## 0.5.0
26
+
27
+ - [`76964c1`](https://github.com/mantoni/beads-ui/commit/76964c1daf133dded6b8f335cfe9d3184ac96a18)
28
+ Show badge with number of cards per column
29
+ - [`155316c`](https://github.com/mantoni/beads-ui/commit/155316c975a93edc806379e769b538c213ee5ed8)
30
+ Add loading indicator
31
+ - [`80a837a`](https://github.com/mantoni/beads-ui/commit/80a837a0ef9702fbb7cbbf168526a5a5e3e80d54)
32
+ Show fatal errors in UI
33
+ - [`06e8fd9`](https://github.com/mantoni/beads-ui/commit/06e8fd9293b226c88d8b395c7bc28b9c7f4c9610)
34
+ Beads metadata
35
+ - [`233c70a`](https://github.com/mantoni/beads-ui/commit/233c70aa9b6ed6e2d7fef487c7b241ffe721cecd)
36
+ npm audit
37
+ - [`37b3476`](https://github.com/mantoni/beads-ui/commit/37b3476bc7a0061484de913bee00f285a073ea24)
38
+ Upgrade marked
39
+ - [`a1362c9`](https://github.com/mantoni/beads-ui/commit/a1362c97fc770cb18764305453b18f71830bdbef)
40
+ Update express and types
41
+ - [`8efc40d`](https://github.com/mantoni/beads-ui/commit/8efc40dadc051a826c64474a1254641294337a81)
42
+ Update vitest, jsdom and esbuild
43
+ - [`89cac0f`](https://github.com/mantoni/beads-ui/commit/89cac0ff438a7f1d8b790f339064f2b49ef8ab13)
44
+ Update eslint and plugins
45
+ - [`0d7e33e`](https://github.com/mantoni/beads-ui/commit/0d7e33e55259d11c39820c1576db74b7fec26b5e)
46
+ Update prettier and format files
47
+ - [`356a201`](https://github.com/mantoni/beads-ui/commit/356a201af8cfce75d82a7f942b5d04698400715c)
48
+ Rename npm scripts for prettier and tsc
49
+ - [`31b25d4`](https://github.com/mantoni/beads-ui/commit/31b25d42d23e60c4b30b29281c392179104bf813)
50
+ Upgrade @trivago/prettier-plugin-sort-imports
51
+
52
+ _Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-12-08._
53
+
3
54
  ## 0.4.4
4
55
 
5
56
  - [`d0f8d1d`](https://github.com/mantoni/beads-ui/commit/d0f8d1d088eda78da14d35ac4fd898cbeb68b534)
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
- - `PORT`: overrides the listen port (default `3000`). The server binds to
56
- `127.0.0.1`.
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
 
package/app/index.html CHANGED
@@ -13,6 +13,17 @@
13
13
  <nav id="top-nav" class="header-nav" aria-label="Primary"></nav>
14
14
  </div>
15
15
  <div class="header-actions">
16
+ <div
17
+ id="header-loading"
18
+ class="header-loading"
19
+ role="status"
20
+ aria-live="polite"
21
+ aria-label="Loading"
22
+ hidden
23
+ >
24
+ <span class="header-loading__spinner" aria-hidden="true"></span>
25
+ <span class="visually-hidden">Loading</span>
26
+ </div>
16
27
  <label class="theme-toggle" title="Toggle dark mode">
17
28
  <span>Dark</span>
18
29
  <input