beads-enhanced-ui 0.1.3 → 0.1.4

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,13 @@
1
1
  # Changes
2
2
 
3
+ ## 0.1.4
4
+
5
+ Released April 23, 2026
6
+
7
+ ### Changed
8
+
9
+ - Changed the default local UI server port from `3000` to `3050` to reduce collisions with other dev servers.
10
+
3
11
  ## 0.1.3
4
12
 
5
13
  Released April 22, 2026
package/README.md CHANGED
@@ -55,7 +55,7 @@ See `bdui --help` for options.
55
55
  - `BDUI_RUNTIME_DIR`: override runtime directory for PID/logs. Defaults to
56
56
  `$XDG_RUNTIME_DIR/beads-ui` or the system temp dir.
57
57
  - `HOST`: overrides the bind address (default `127.0.0.1`).
58
- - `PORT`: overrides the listen port (default `3000`).
58
+ - `PORT`: overrides the listen port (default `3050`).
59
59
 
60
60
  These can also be set via CLI options: `bdui start --host 0.0.0.0 --port 8080`
61
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beads-enhanced-ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Enhanced local UI for Beads with improved epic rows, status labels, and UX refinements.",
5
5
  "keywords": [
6
6
  "agent",
@@ -102,7 +102,7 @@ function sleep(ms) {
102
102
  * Register a workspace with the running server.
103
103
  * Makes a POST request to /api/register-workspace.
104
104
  *
105
- * @param {string} base_url - Server base URL (e.g., "http://127.0.0.1:3000")
105
+ * @param {string} base_url - Server base URL (e.g., "http://127.0.0.1:3050")
106
106
  * @param {{ path: string, database: string }} workspace
107
107
  * @returns {Promise<boolean>} True if registration succeeded
108
108
  */
@@ -18,7 +18,7 @@ export function printUsage(out_stream) {
18
18
  ' -d, --debug Enable debug logging',
19
19
  ' --open Open the browser after start/restart',
20
20
  ' --host <addr> Bind to a specific host (default: 127.0.0.1)',
21
- ' --port <num> Bind to a specific port (default: 3000)',
21
+ ' --port <num> Bind to a specific port (default: 3050)',
22
22
  ''
23
23
  ];
24
24
  for (const line of lines) {
package/server/config.js CHANGED
@@ -20,7 +20,7 @@ export function getConfig() {
20
20
 
21
21
  let port_value = Number.parseInt(process.env.PORT || '', 10);
22
22
  if (!Number.isFinite(port_value)) {
23
- port_value = 3000;
23
+ port_value = 3050;
24
24
  }
25
25
 
26
26
  const host_env = process.env.HOST;