boo-flash 0.1.6 → 0.1.8
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/README.md +16 -0
- package/THIRD_PARTY_NOTICES +24 -0
- package/dist/app.js +471 -430
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -20,8 +20,24 @@ bunx boo-flash
|
|
|
20
20
|
|
|
21
21
|
Choose the target computer’s GPU and USB drive. Boo Flash downloads and verifies the latest qualified image, then erases and writes the selected drive.
|
|
22
22
|
|
|
23
|
+
You can also choose a candidate. The selected version, candidate number (when applicable), and GPU stay visible through flashing and on the result screen.
|
|
24
|
+
|
|
25
|
+
Boo Flash's own package version is shown in the bottom-right footer. A compact
|
|
26
|
+
Unicode Boo logo appears above the flash box when there is room without shrinking it.
|
|
27
|
+
|
|
23
28
|
Requires Node.js 26.4+ or Bun 1.4+.
|
|
24
29
|
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
From this directory, run `bun install --frozen-lockfile`, then `bun scripts/preview.tsx`
|
|
33
|
+
for a non-writing UI preview. It renders the same app with a separate fixture backend;
|
|
34
|
+
the preview label belongs to the development runner, not the app. The runner and
|
|
35
|
+
fixtures are neither bundled nor published. The installed CLI has no demo mode.
|
|
36
|
+
|
|
37
|
+
Run `bun run typecheck`, `bun run test` and `bun run test:package` for verification.
|
|
38
|
+
Package smoke tests start the real app and quit without selecting a drive; UI flow
|
|
39
|
+
tests supply their own backend.
|
|
40
|
+
|
|
25
41
|
## License
|
|
26
42
|
|
|
27
43
|
MIT © 2026 Anomaly
|
package/THIRD_PARTY_NOTICES
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
This distribution contains code from the following projects.
|
|
2
2
|
|
|
3
|
+
Boo logo artwork derived from @simonklee/bigfeelings 0.2.1
|
|
4
|
+
-------------------------------------------------------
|
|
5
|
+
MIT License
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2026 Simon Klee
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
|
26
|
+
|
|
3
27
|
@opentui/solid
|
|
4
28
|
----------------
|
|
5
29
|
MIT License
|