@rom-weaver/cli 0.12.1 → 0.12.2
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 +13 -5
- package/docs/man/rom-weaver.1 +2 -2
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -287,12 +287,20 @@ For the current measurements and trade-offs, see the [performance brief](#perfor
|
|
|
287
287
|
|
|
288
288
|
## Performance
|
|
289
289
|
|
|
290
|
-
rom-weaver
|
|
291
|
-
|
|
292
|
-
|
|
290
|
+
rom-weaver matches or beats the reference tools on every measured axis:
|
|
291
|
+
extraction time, compression time, and output size. On the measured arm64
|
|
292
|
+
corpus, extraction is faster in all four formats. CHD extracts 3.1–5.8× faster,
|
|
293
|
+
RVZ 1.6–2.0×, ZIP 1.6–2.7×, and 7z 1.0–4.7×. RVZ and ZIP compression are
|
|
294
|
+
1.1–1.3× faster. 7z compression is even with its reference. CHD compression
|
|
295
|
+
ranges from even to 1.3× faster. Output sizes match the references to within a
|
|
296
|
+
fraction of a percent.
|
|
297
|
+
|
|
298
|
+
The CLI and the threaded WASM webapp share one Rust engine. The browser adds
|
|
299
|
+
worker, storage, and OPFS costs, so CLI and browser timings are not
|
|
300
|
+
comparable. The [performance guide](./docs/development/performance.md) records
|
|
293
301
|
the machine, corpus, settings, reference-tool versions, and repeated runs for
|
|
294
|
-
each published result
|
|
295
|
-
Production WASM is optimized with `wasm-opt -O4
|
|
302
|
+
each published result. It also lists the commands that reproduce them.
|
|
303
|
+
Production WASM is optimized with `wasm-opt -O4`. The browser codec matrix is
|
|
296
304
|
the runtime check for the shipped worker and storage path.
|
|
297
305
|
|
|
298
306
|
## Features
|
package/docs/man/rom-weaver.1
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.ie \n(.g .ds Aq \(aq
|
|
2
2
|
.el .ds Aq '
|
|
3
|
-
.TH rom-weaver 1 "rom-weaver 0.12.
|
|
3
|
+
.TH rom-weaver 1 "rom-weaver 0.12.2"
|
|
4
4
|
.SH NAME
|
|
5
5
|
rom\-weaver \- Inspect, extract, checksum, compress, trim, and patch ROMs and disc images
|
|
6
6
|
.SH SYNOPSIS
|
|
@@ -121,4 +121,4 @@ Examples:
|
|
|
121
121
|
|
|
122
122
|
Full guide: https://rom\-weaver.com/docs/cli
|
|
123
123
|
.SH VERSION
|
|
124
|
-
v0.12.
|
|
124
|
+
v0.12.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rom-weaver/cli",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"author": "Brandon Casey",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"description": "Local-first toolkit for ROMs and disc images: inspect, extract, compress, and apply, create, or bundle patches. Offline via a browser service-worker PWA or CLI.",
|
|
@@ -64,15 +64,15 @@
|
|
|
64
64
|
"node": ">=22"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"@rom-weaver/darwin-arm64": "0.12.
|
|
68
|
-
"@rom-weaver/darwin-x64": "0.12.
|
|
69
|
-
"@rom-weaver/linux-arm64-musl": "0.12.
|
|
70
|
-
"@rom-weaver/linux-ia32-musl": "0.12.
|
|
71
|
-
"@rom-weaver/linux-x64-gnu": "0.12.
|
|
72
|
-
"@rom-weaver/linux-x64-musl": "0.12.
|
|
73
|
-
"@rom-weaver/win32-arm64-msvc": "0.12.
|
|
74
|
-
"@rom-weaver/win32-ia32-msvc": "0.12.
|
|
75
|
-
"@rom-weaver/win32-x64-msvc": "0.12.
|
|
67
|
+
"@rom-weaver/darwin-arm64": "0.12.2",
|
|
68
|
+
"@rom-weaver/darwin-x64": "0.12.2",
|
|
69
|
+
"@rom-weaver/linux-arm64-musl": "0.12.2",
|
|
70
|
+
"@rom-weaver/linux-ia32-musl": "0.12.2",
|
|
71
|
+
"@rom-weaver/linux-x64-gnu": "0.12.2",
|
|
72
|
+
"@rom-weaver/linux-x64-musl": "0.12.2",
|
|
73
|
+
"@rom-weaver/win32-arm64-msvc": "0.12.2",
|
|
74
|
+
"@rom-weaver/win32-ia32-msvc": "0.12.2",
|
|
75
|
+
"@rom-weaver/win32-x64-msvc": "0.12.2"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
78
|
"docs:lint": "markdownlint-cli2",
|