supersonic-scsynth 0.66.0 → 0.67.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/LICENSE +11 -0
- package/README.md +394 -123
- package/README.npm.md +394 -123
- package/dist/osc_channel.js +1 -1
- package/dist/supersonic.js +5 -5
- package/dist/workers/debug_worker.js +3 -3
- package/dist/workers/osc_in_worker.js +1 -1
- package/dist/workers/osc_out_log_sab_worker.js +1 -1
- package/dist/workers/osc_out_prescheduler_worker.js +1 -1
- package/package.json +1 -1
- package/supersonic.d.ts +102 -10
package/LICENSE
CHANGED
|
@@ -44,6 +44,17 @@ SuperCollider's scsynth.
|
|
|
44
44
|
Based on SuperCollider's scsynth
|
|
45
45
|
Copyright (c) 2002-2023 James McCartney and SuperCollider contributors
|
|
46
46
|
|
|
47
|
+
================================================================================
|
|
48
|
+
Third-Party Components
|
|
49
|
+
================================================================================
|
|
50
|
+
|
|
51
|
+
- [Steinberg ASIO SDK 2.3.4](https://www.steinberg.net/en/company/developers.html) —
|
|
52
|
+
[GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.html)
|
|
53
|
+
Bundled in external_libs/ASIOSDK2.3.4/. Compiled into the native
|
|
54
|
+
build on Windows only (JUCE_ASIO=1). Dual-licensed; SuperSonic uses
|
|
55
|
+
it under GPL-3.0. "ASIO" is a trademark of Steinberg Media
|
|
56
|
+
Technologies GmbH.
|
|
57
|
+
|
|
47
58
|
================================================================================
|
|
48
59
|
MIT License
|
|
49
60
|
================================================================================
|