fractal-midi 0.3.0 → 0.3.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/README.md +11 -0
- package/catalog/am4.json +15092 -0
- package/catalog/axe-fx-gen1.json +19571 -0
- package/catalog/axe-fx-ii.json +13777 -0
- package/catalog/axe-fx-iii.json +16909 -0
- package/catalog/fm3.json +14647 -0
- package/catalog/fm9.json +31616 -0
- package/catalog/index.json +49 -0
- package/catalog/vp4.json +11184 -0
- package/docs/CATALOG-SCHEMA.md +95 -0
- package/docs/README.md +79 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -78,6 +78,17 @@ import { buildSetParam } from 'fractal-midi/axe-fx-ii/codec';
|
|
|
78
78
|
import { params } from 'fractal-midi/axe-fx-iii';
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
### Not using TypeScript? Use the JSON catalog
|
|
82
|
+
|
|
83
|
+
`catalog/` ships a generated, language-agnostic export of every device's
|
|
84
|
+
parameter dictionary, block tables, enum rosters, and ranges — one JSON file
|
|
85
|
+
per device. Read it straight from the installed package
|
|
86
|
+
(`node_modules/fractal-midi/catalog/<device>.json`) or from a pinned git tag.
|
|
87
|
+
Pin a version rather than copying the files: calibration fixes and enum-roster
|
|
88
|
+
fills land here first. Shape contract:
|
|
89
|
+
[docs/CATALOG-SCHEMA.md](docs/CATALOG-SCHEMA.md). The JSON is regenerated from
|
|
90
|
+
the TypeScript source on every change and CI-gated against drift.
|
|
91
|
+
|
|
81
92
|
## Per-device coverage
|
|
82
93
|
|
|
83
94
|
| Device | Catalog | Codec | Calibration | Hardware-verified |
|