beads-enhanced-ui 0.1.2 → 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 +21 -0
- package/README.md +1 -1
- package/app/index.html +6 -0
- package/app/main.bundle.js +239 -239
- package/app/main.bundle.js.map +3 -3
- package/app/styles.css +15 -0
- package/package.json +1 -1
- package/server/bd.js +45 -1
- package/server/cli/open.js +1 -1
- package/server/cli/usage.js +1 -1
- package/server/config.js +1 -1
- package/server/db.js +35 -0
- package/server/watcher.js +1 -1
- package/server/ws.js +8 -5
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
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
|
+
|
|
11
|
+
## 0.1.3
|
|
12
|
+
|
|
13
|
+
Released April 22, 2026
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Header banner warns when the active workspace uses Dolt embedded mode, where occasional lock conflicts with external `bd` processes may occur.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- `bd` invocations that fail with a Dolt embedded-mode exclusive-lock error are now automatically retried with jittered backoff (up to 5 seconds), reducing transient failures during concurrent access.
|
|
22
|
+
- Watcher cooldown for Dolt embedded-mode increased from 5 s to 30 s to prevent lock-storm cascades after a write.
|
|
23
|
+
|
|
3
24
|
## 0.1.2
|
|
4
25
|
|
|
5
26
|
Released April 15, 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 `
|
|
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/app/index.html
CHANGED
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
<div id="workspace-picker" class="header-workspace"></div>
|
|
14
14
|
<nav id="top-nav" class="header-nav" aria-label="Primary"></nav>
|
|
15
15
|
</div>
|
|
16
|
+
<div
|
|
17
|
+
id="backend-status-banner"
|
|
18
|
+
class="backend-status-banner"
|
|
19
|
+
role="status"
|
|
20
|
+
hidden
|
|
21
|
+
></div>
|
|
16
22
|
<div class="header-actions">
|
|
17
23
|
<div
|
|
18
24
|
id="header-loading"
|