beads-ui 0.4.2 → 0.4.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 +34 -1
- package/README.md +2 -2
- package/app/main.bundle.js +83 -79
- package/app/main.bundle.js.map +4 -4
- package/app/styles.css +17 -26
- package/package.json +3 -2
- package/server/bd.js +27 -22
- package/server/list-adapters.js +13 -0
- package/server/ws.js +15 -8
package/CHANGES.md
CHANGED
|
@@ -1,9 +1,42 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.4.4
|
|
4
|
+
|
|
5
|
+
- [`d0f8d1d`](https://github.com/mantoni/beads-ui/commit/d0f8d1d088eda78da14d35ac4fd898cbeb68b534)
|
|
6
|
+
Make labels a separate section in the sidebar
|
|
7
|
+
- [`c44fd34`](https://github.com/mantoni/beads-ui/commit/c44fd3484ade8ef7ea56eb608d11bb07ebbf665b)
|
|
8
|
+
Fix flaky board test due to time-sensitive closed filter (Nikolai
|
|
9
|
+
Prokoschenko)
|
|
10
|
+
|
|
11
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-11-13._
|
|
12
|
+
|
|
13
|
+
## 0.4.3
|
|
14
|
+
|
|
15
|
+
- [`4a5b4cd`](https://github.com/mantoni/beads-ui/commit/4a5b4cda8b22437eac2636c0a5556d0b52897f5f)
|
|
16
|
+
Add author (ignore in changes)
|
|
17
|
+
- [`a34855e`](https://github.com/mantoni/beads-ui/commit/a34855ea26304554df2056ac6ed5224db25d795a)
|
|
18
|
+
Ignore tsconfig.tsbuildinfo
|
|
19
|
+
- [`a7ebbc1`](https://github.com/mantoni/beads-ui/commit/a7ebbc1ba8538107f0ec106638115c4d78c48711)
|
|
20
|
+
Add logging instead of ignoring issues
|
|
21
|
+
- [`54c9488`](https://github.com/mantoni/beads-ui/commit/54c94885c28a9bbdaaa60de6eaf8b91eac567bec)
|
|
22
|
+
Mention `npm link` for development
|
|
23
|
+
- [`a137db0`](https://github.com/mantoni/beads-ui/commit/a137db02386457b7277f9566b5f6fc0079581bf7)
|
|
24
|
+
Display beads issue ID as is
|
|
25
|
+
- [`ee343ee`](https://github.com/mantoni/beads-ui/commit/ee343ee39cc5ef9c7d7ec7df0a4f2b2f0e4b51ba)
|
|
26
|
+
Remove try-catch around localStorage access
|
|
27
|
+
- [`619a107`](https://github.com/mantoni/beads-ui/commit/619a107948b47bcfa6c7102ca0e90f3d575ac3a8)
|
|
28
|
+
Upgrade vitest to v4
|
|
29
|
+
- [`caed1b5`](https://github.com/mantoni/beads-ui/commit/caed1b5005645c2cf566ac3c3eddc4b5b73a4f74)
|
|
30
|
+
Use vitest restoreMocks config
|
|
31
|
+
- [`0a28b5b`](https://github.com/mantoni/beads-ui/commit/0a28b5bf5cc278a6775a051c712ff560dfab2b81)
|
|
32
|
+
Fix: Use BEADS_DB env var instead of --db flag (Nikolai Prokoschenko)
|
|
33
|
+
|
|
34
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-11-01._
|
|
35
|
+
|
|
3
36
|
## 0.4.2
|
|
4
37
|
|
|
5
38
|
- [`66e31ff`](https://github.com/mantoni/beads-ui/commit/66e31ff0e053f3691657ce1175fd9b02155ca699)
|
|
6
|
-
Fix pre-bundled app: Check for bundle instead of NODE_ENV
|
|
39
|
+
Fix pre-bundled app: Check for bundle instead of NODE_ENV
|
|
7
40
|
|
|
8
41
|
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2025-10-29._
|
|
9
42
|
|
package/README.md
CHANGED
|
@@ -65,8 +65,8 @@ See `bdui --help` for options.
|
|
|
65
65
|
|
|
66
66
|
- 🔨 Clone the repo and run `npm install`.
|
|
67
67
|
- 🚀 Start the dev server with `npm start`.
|
|
68
|
-
-
|
|
69
|
-
|
|
68
|
+
- 🔗 Alternatively, use `npm link` to link the package globally and run
|
|
69
|
+
`bdui start` from any project.
|
|
70
70
|
|
|
71
71
|
## Debug Logging
|
|
72
72
|
|