@opendaw/studio-core 0.0.84 → 0.0.85
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/dist/EffectFactories.d.ts +0 -2
- package/dist/EffectFactories.d.ts.map +1 -1
- package/dist/EffectFactories.js +1 -1
- package/dist/Engine.d.ts +2 -1
- package/dist/Engine.d.ts.map +1 -1
- package/dist/EngineFacade.d.ts +2 -1
- package/dist/EngineFacade.d.ts.map +1 -1
- package/dist/EngineFacade.js +3 -1
- package/dist/EngineWorklet.d.ts +2 -1
- package/dist/EngineWorklet.d.ts.map +1 -1
- package/dist/EngineWorklet.js +5 -2
- package/dist/Preferences.d.ts +2 -0
- package/dist/Preferences.d.ts.map +1 -1
- package/dist/Preferences.js +1 -0
- package/dist/Storage.d.ts.map +1 -1
- package/dist/Storage.js +14 -5
- package/dist/capture/Capture.d.ts +4 -1
- package/dist/capture/Capture.d.ts.map +1 -1
- package/dist/capture/Capture.js +4 -0
- package/dist/capture/RecordAudio.d.ts.map +1 -1
- package/dist/capture/RecordAudio.js +4 -2
- package/dist/capture/RecordMidi.d.ts.map +1 -1
- package/dist/capture/RecordMidi.js +1 -0
- package/dist/capture/Recording.d.ts.map +1 -1
- package/dist/capture/Recording.js +1 -0
- package/dist/midi/MIDILearning.d.ts.map +1 -1
- package/dist/midi/MIDILearning.js +0 -1
- package/dist/processors.js +14 -14
- package/dist/processors.js.map +4 -4
- package/dist/project/Project.d.ts +2 -2
- package/dist/project/Project.d.ts.map +1 -1
- package/dist/project/Project.js +15 -9
- package/dist/project/ProjectApi.js +2 -2
- package/dist/project/ProjectBundle.d.ts.map +1 -1
- package/dist/project/ProjectBundle.js +4 -3
- package/dist/project/ProjectMigration.d.ts.map +1 -1
- package/dist/project/ProjectMigration.js +16 -1
- package/dist/project/audio/AudioContentModifier.d.ts.map +1 -1
- package/dist/project/audio/AudioContentModifier.js +15 -2
- package/dist/samples/DefaultSampleLoader.d.ts.map +1 -1
- package/dist/samples/DefaultSampleLoader.js +8 -4
- package/dist/samples/DefaultSampleLoaderManager.js +1 -1
- package/dist/soundfont/DefaultSoundfontLoader.d.ts.map +1 -1
- package/dist/soundfont/DefaultSoundfontLoader.js +8 -4
- package/dist/ui/RegionClipResolver.d.ts.map +1 -1
- package/dist/ui/RegionClipResolver.js +15 -6
- package/dist/ui/RegionModifyStrategies.js +3 -3
- package/dist/ui/TimeGrid.d.ts +2 -1
- package/dist/ui/TimeGrid.d.ts.map +1 -1
- package/dist/ui/TimeGrid.js +28 -14
- package/dist/workers-main.js +1 -1
- package/dist/workers-main.js.map +3 -3
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/studio-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.85",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"test": "vitest run --config vitest.config.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@opendaw/lib-box": "^0.0.
|
|
35
|
-
"@opendaw/lib-dawproject": "^0.0.
|
|
36
|
-
"@opendaw/lib-dom": "^0.0.
|
|
37
|
-
"@opendaw/lib-dsp": "^0.0.
|
|
38
|
-
"@opendaw/lib-fusion": "^0.0.
|
|
39
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
40
|
-
"@opendaw/lib-std": "^0.0.
|
|
41
|
-
"@opendaw/studio-adapters": "^0.0.
|
|
42
|
-
"@opendaw/studio-boxes": "^0.0.
|
|
43
|
-
"@opendaw/studio-enums": "^0.0.
|
|
34
|
+
"@opendaw/lib-box": "^0.0.63",
|
|
35
|
+
"@opendaw/lib-dawproject": "^0.0.48",
|
|
36
|
+
"@opendaw/lib-dom": "^0.0.63",
|
|
37
|
+
"@opendaw/lib-dsp": "^0.0.62",
|
|
38
|
+
"@opendaw/lib-fusion": "^0.0.66",
|
|
39
|
+
"@opendaw/lib-runtime": "^0.0.62",
|
|
40
|
+
"@opendaw/lib-std": "^0.0.62",
|
|
41
|
+
"@opendaw/studio-adapters": "^0.0.71",
|
|
42
|
+
"@opendaw/studio-boxes": "^0.0.64",
|
|
43
|
+
"@opendaw/studio-enums": "^0.0.54",
|
|
44
44
|
"dropbox": "^10.34.0",
|
|
45
45
|
"y-websocket": "^1.4.5",
|
|
46
46
|
"yjs": "^13.6.27",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"@ffmpeg/ffmpeg": "^0.12.15",
|
|
55
55
|
"@ffmpeg/util": "^0.12.2",
|
|
56
56
|
"@opendaw/eslint-config": "^0.0.27",
|
|
57
|
-
"@opendaw/studio-core-processors": "^0.0.
|
|
58
|
-
"@opendaw/studio-core-workers": "^0.0.
|
|
59
|
-
"@opendaw/studio-forge-boxes": "^0.0.
|
|
60
|
-
"@opendaw/typescript-config": "^0.0.
|
|
57
|
+
"@opendaw/studio-core-processors": "^0.0.73",
|
|
58
|
+
"@opendaw/studio-core-workers": "^0.0.66",
|
|
59
|
+
"@opendaw/studio-forge-boxes": "^0.0.64",
|
|
60
|
+
"@opendaw/typescript-config": "^0.0.28"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "100e759378d7150e6eb7165232d8c4a1fbb77bbc"
|
|
63
63
|
}
|