@opendaw/studio-sdk 0.0.140 → 0.0.142
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/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -32,6 +32,22 @@ openDAW is available **under two alternative license terms**:
|
|
|
32
32
|
If you redistribute or run modified versions of openDAW for public use **without** a commercial license, the AGPL v3
|
|
33
33
|
terms apply automatically.
|
|
34
34
|
|
|
35
|
+
## Components excluded from the Commercial License
|
|
36
|
+
|
|
37
|
+
The components below ship with openDAW but are **not** covered by Option B (Commercial License). Their upstream
|
|
38
|
+
licenses are copyleft, or they depend on a third-party service whose terms cannot be sublicensed by openDAW. A
|
|
39
|
+
commercial-license build must omit or replace each of them.
|
|
40
|
+
|
|
41
|
+
| Component | Location | Upstream | Why excluded |
|
|
42
|
+
|---------------------------------|-------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------|
|
|
43
|
+
| **Compressor** | `lib/dsp/src/ctagdrc/`<br>`studio/core-processors/.../CompressorDeviceProcessor.ts` | CTAGDRC (Phillip Lamp, 2020) + LookAhead by Daniel Rudrich, 2019 — **GPL v3.0** | Upstream GPL cannot be sublicensed under non-copyleft terms. Replace with a permissively-licensed compressor for option B. |
|
|
44
|
+
| **Neural Amp / Tone3000** | `app/studio/.../NeuralAmp/NamTone3000.*`<br>`Tone3000Dialog.tsx`<br>icons + manual references | tone3000.com — third-party service and per-model licensing | Integration calls the Tone3000 API and loads models whose individual licenses are set by their authors on tone3000.com. |
|
|
45
|
+
| **AI Tempo Detection** | `lib/inference/src/tasks/TempoDetectionTask.ts`<br>`assets.opendaw.studio/models/tempo-cnn/` | TempoCNN (Schreiber & Müller, hendriks73/tempo-cnn) — **AGPL v3.0** | Upstream AGPL cannot be sublicensed. The `lib-inference` package itself is not part of the SDK either. |
|
|
46
|
+
|
|
47
|
+
`lib-inference` (the rest of it — stem separation, audio-to-MIDI) and the assets it pulls from
|
|
48
|
+
`assets.opendaw.studio` are runtime-only and **not** part of the SDK distribution; they are listed here only because
|
|
49
|
+
they ship inside the open-source studio.
|
|
50
|
+
|
|
35
51
|
## License
|
|
36
52
|
|
|
37
53
|
[AGPL v3 (or later)](https://www.gnu.org/licenses/agpl-3.0.txt) © 2025 André Michelle
|
package/dist/version.d.ts
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* The current version of the OpenDAW SDK.
|
|
3
3
|
* This value is automatically synchronized with package.json during publish.
|
|
4
4
|
*/
|
|
5
|
-
export declare const OPENDAW_SDK_VERSION = "0.0.
|
|
5
|
+
export declare const OPENDAW_SDK_VERSION = "0.0.142";
|
|
6
6
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/studio-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.142",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"prepublishOnly": "npm run build"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@opendaw/typescript-config": "^0.0.
|
|
42
|
+
"@opendaw/typescript-config": "^0.0.31"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@opendaw/lib-box": "^0.0.
|
|
46
|
-
"@opendaw/lib-dawproject": "^0.0.
|
|
47
|
-
"@opendaw/lib-dom": "^0.0.
|
|
48
|
-
"@opendaw/lib-dsp": "^0.0.
|
|
49
|
-
"@opendaw/lib-fusion": "^0.0.
|
|
50
|
-
"@opendaw/lib-jsx": "^0.0.
|
|
51
|
-
"@opendaw/lib-midi": "^0.0.
|
|
52
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
53
|
-
"@opendaw/lib-std": "^0.0.
|
|
54
|
-
"@opendaw/lib-xml": "^0.0.
|
|
55
|
-
"@opendaw/studio-adapters": "^0.0.
|
|
56
|
-
"@opendaw/studio-boxes": "^0.0.
|
|
57
|
-
"@opendaw/studio-core": "^0.0.
|
|
58
|
-
"@opendaw/studio-enums": "^0.0.
|
|
45
|
+
"@opendaw/lib-box": "^0.0.85",
|
|
46
|
+
"@opendaw/lib-dawproject": "^0.0.69",
|
|
47
|
+
"@opendaw/lib-dom": "^0.0.82",
|
|
48
|
+
"@opendaw/lib-dsp": "^0.0.83",
|
|
49
|
+
"@opendaw/lib-fusion": "^0.0.92",
|
|
50
|
+
"@opendaw/lib-jsx": "^0.0.82",
|
|
51
|
+
"@opendaw/lib-midi": "^0.0.65",
|
|
52
|
+
"@opendaw/lib-runtime": "^0.0.78",
|
|
53
|
+
"@opendaw/lib-std": "^0.0.77",
|
|
54
|
+
"@opendaw/lib-xml": "^0.0.63",
|
|
55
|
+
"@opendaw/studio-adapters": "^0.0.108",
|
|
56
|
+
"@opendaw/studio-boxes": "^0.0.90",
|
|
57
|
+
"@opendaw/studio-core": "^0.0.140",
|
|
58
|
+
"@opendaw/studio-enums": "^0.0.74"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "14eb5aa9606a3a259a25b46b97a1e24be380e338"
|
|
61
61
|
}
|