beads-ui 0.11.3 → 0.12.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.
- package/CHANGES.md +34 -0
- package/app/main.bundle.js +203 -203
- package/app/main.bundle.js.map +3 -3
- package/package.json +1 -1
- package/server/app.js +10 -1
- package/server/cli/commands.js +95 -10
- package/server/cli/daemon.js +70 -1
- package/server/cli/open.js +39 -0
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.12.1
|
|
4
|
+
|
|
5
|
+
- [`dee0ffa`](https://github.com/mantoni/beads-ui/commit/dee0ffac6a5635c6761a4c97e3878157f2131f6b)
|
|
6
|
+
Fix detail comments after live updates (#92) (Greg Procunier)
|
|
7
|
+
>
|
|
8
|
+
> Co-authored-by: gprocunier <gprocunier@users.noreply.github.com>
|
|
9
|
+
- [`41135d1`](https://github.com/mantoni/beads-ui/commit/41135d185936c73b719a8cd27519b0918108de00)
|
|
10
|
+
feat(cli): print server URL on start/restart when reusing existing server (#79) (Leon Letto)
|
|
11
|
+
>
|
|
12
|
+
> Previously `bdui restart` (and `start` when the default port was already
|
|
13
|
+
> in use by another bdui) only reported that the workspace was registered
|
|
14
|
+
> with an existing server, with no clickable URL in the terminal output.
|
|
15
|
+
> This adds a `beads ui listening on <url>` line to those paths so users
|
|
16
|
+
> can click straight through to the UI.
|
|
17
|
+
|
|
18
|
+
_Released by gprocunier on 2026-07-03._
|
|
19
|
+
|
|
20
|
+
## 0.12.0
|
|
21
|
+
|
|
22
|
+
- [`8559d4a`](https://github.com/mantoni/beads-ui/commit/8559d4af699555b9943914a2e790965c9e4d8da7)
|
|
23
|
+
feat(cli): auto-increment port when default is in use (#73) (Leon Letto)
|
|
24
|
+
- [`527e9a5`](https://github.com/mantoni/beads-ui/commit/527e9a59a01e1b93c1488cb1e2ed26ae346b358c)
|
|
25
|
+
feat(cli): preserve workspaces across bdui restart (#72) (Leon Letto)
|
|
26
|
+
- [`5996b39`](https://github.com/mantoni/beads-ui/commit/5996b39499bcf0e460133c27a7ee20b30c677ab5)
|
|
27
|
+
chore: add dev-docs to .prettierignore (Leon Letto)
|
|
28
|
+
- [`08f1439`](https://github.com/mantoni/beads-ui/commit/08f1439d13fc5b534de13e1ea94af4407174d76f)
|
|
29
|
+
style: fix prettier formatting in daemon and test files (Leon Letto)
|
|
30
|
+
- [`4a0c791`](https://github.com/mantoni/beads-ui/commit/4a0c791300f12e47faae74e8237f823857be7dd9)
|
|
31
|
+
fix: resolve TS18048 type error in restart test (Leon Letto)
|
|
32
|
+
- [`c973d86`](https://github.com/mantoni/beads-ui/commit/c973d8693c6cfa3a5f8ad0905134465903e527a2)
|
|
33
|
+
feat(cli): preserve listening port across bdui restart (Leon Letto)
|
|
34
|
+
|
|
35
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2026-04-02._
|
|
36
|
+
|
|
3
37
|
## 0.11.3
|
|
4
38
|
|
|
5
39
|
- [`47261a7`](https://github.com/mantoni/beads-ui/commit/47261a7a95d5a17b480ae56c4a10b5eeb49d1007)
|