supersonic-scsynth 0.69.0 → 0.70.0
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/LICENSE +19 -0
- package/README.md +82 -456
- package/README.npm.md +82 -456
- package/dist/metrics_component.js +1 -1
- package/dist/osc_channel.js +1 -1
- package/dist/supersonic.js +5 -5
- package/dist/workers/osc_in_worker.js +1 -1
- package/dist/workers/osc_out_log_sab_worker.js +1 -1
- package/package.json +2 -1
- package/supersonic.d.ts +36 -204
- package/dist/workers/debug_worker.js +0 -3
- package/dist/workers/osc_out_prescheduler_worker.js +0 -1
package/LICENSE
CHANGED
|
@@ -22,6 +22,25 @@ Open Sound Control (OSC) messages and contain no GPL-derived code.
|
|
|
22
22
|
Erlang/BEAM client:
|
|
23
23
|
src/nif/supersonic.erl
|
|
24
24
|
|
|
25
|
+
Rust client / subsystem:
|
|
26
|
+
rust/supersonic-midi/ (MIDI subsystem; midir-based, no GPL-derived
|
|
27
|
+
code; exchanges /midi/* OSC with the engine.
|
|
28
|
+
When statically linked into the GPL native
|
|
29
|
+
engine the combined binary is GPL, but this
|
|
30
|
+
crate itself is available under MIT OR
|
|
31
|
+
GPL-3.0-or-later — e.g. for the web build.)
|
|
32
|
+
|
|
33
|
+
Reference hosts:
|
|
34
|
+
test/freestanding/freestanding_main.cpp (desktop build/boot guard)
|
|
35
|
+
esp32s3/main/main.cpp (ESP32-S3 build-smoke)
|
|
36
|
+
(minimal engine drivers that use only the
|
|
37
|
+
lanes C ABI (src/lanes/lanes.h) and contain no
|
|
38
|
+
GPL-derived code, so each file is available
|
|
39
|
+
under MIT OR GPL-3.0-or-later as a reusable
|
|
40
|
+
integration template. As with the Rust client,
|
|
41
|
+
a binary that statically links the GPL engine
|
|
42
|
+
is GPL.)
|
|
43
|
+
|
|
25
44
|
================================================================================
|
|
26
45
|
Audio Engine (GPL-3.0-or-later)
|
|
27
46
|
================================================================================
|