@opendaw/studio-core 0.0.42 → 0.0.43
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/AssetService.d.ts +18 -0
- package/dist/AssetService.d.ts.map +1 -0
- package/dist/AssetService.js +49 -0
- package/dist/cloud/CloudAuthManager.d.ts.map +1 -1
- package/dist/cloud/CloudAuthManager.js +3 -2
- package/dist/dawproject/DawProjectService.js +1 -1
- package/dist/env.d.ts +6 -0
- package/dist/env.d.ts.map +1 -0
- package/dist/env.js +9 -0
- package/dist/processors.js +3 -3
- package/dist/processors.js.map +3 -3
- package/dist/samples/SampleService.d.ts +7 -13
- package/dist/samples/SampleService.d.ts.map +1 -1
- package/dist/samples/SampleService.js +10 -41
- package/dist/soundfont/OpenSoundfontAPI.js +1 -1
- package/dist/soundfont/SoundfontService.d.ts +7 -13
- package/dist/soundfont/SoundfontService.d.ts.map +1 -1
- package/dist/soundfont/SoundfontService.js +22 -51
- package/dist/workers-main.js +2 -2
- package/dist/workers-main.js.map +3 -3
- package/dist/ysync/YService.d.ts.map +1 -1
- package/dist/ysync/YService.js +2 -3
- package/package.json +15 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"YService.d.ts","sourceRoot":"","sources":["../../src/ysync/YService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,MAAM,EAAmC,MAAM,kBAAkB,CAAA;AAQjF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"YService.d.ts","sourceRoot":"","sources":["../../src/ysync/YService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,MAAM,EAAmC,MAAM,kBAAkB,CAAA;AAQjF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,MAAM,YAAY,CAAA;AAK9C,yBAAiB,QAAQ,CAAC;IAGf,MAAM,eAAe,GAAU,YAAY,MAAM,CAAC,OAAO,CAAC,EAC3B,KAAK,UAAU,EACf,UAAU,MAAM,KAAG,OAAO,CAAC,OAAO,CAiDvE,CAAA;CACJ"}
|
package/dist/ysync/YService.js
CHANGED
|
@@ -7,12 +7,11 @@ import { YSync } from "./YSync";
|
|
|
7
7
|
import * as Y from "yjs";
|
|
8
8
|
import { WebsocketProvider } from "y-websocket";
|
|
9
9
|
import { Project } from "../project";
|
|
10
|
+
import { VITE_VJS_LOCAL_SERVER_URL, VITE_VJS_ONLINE_SERVER_URL, VITE_VJS_USE_LOCAL_SERVER } from "../env";
|
|
10
11
|
// https://inspector.yjs.dev/
|
|
11
12
|
export var YService;
|
|
12
13
|
(function (YService) {
|
|
13
|
-
const
|
|
14
|
-
const isDev = VITE_VJS_USE_LOCAL_SERVER === "true";
|
|
15
|
-
const serverUrl = isDev ? VITE_VJS_LOCAL_SERVER_URL : VITE_VJS_ONLINE_SERVER_URL;
|
|
14
|
+
const serverUrl = VITE_VJS_USE_LOCAL_SERVER === "true" ? VITE_VJS_LOCAL_SERVER_URL : VITE_VJS_ONLINE_SERVER_URL;
|
|
16
15
|
YService.getOrCreateRoom = async (optProject, env, roomName) => {
|
|
17
16
|
if (roomName === "signaling") {
|
|
18
17
|
return panic("Invalid room name: signaling");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/studio-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.43",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,26 +26,26 @@
|
|
|
26
26
|
"test": "vitest run --config vitest.config.ts"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@opendaw/lib-box": "^0.0.
|
|
30
|
-
"@opendaw/lib-dawproject": "^0.0.
|
|
31
|
-
"@opendaw/lib-dom": "^0.0.
|
|
32
|
-
"@opendaw/lib-dsp": "^0.0.
|
|
33
|
-
"@opendaw/lib-fusion": "^0.0.
|
|
34
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
35
|
-
"@opendaw/lib-std": "^0.0.
|
|
36
|
-
"@opendaw/studio-adapters": "^0.0.
|
|
37
|
-
"@opendaw/studio-boxes": "^0.0.
|
|
38
|
-
"@opendaw/studio-enums": "^0.0.
|
|
29
|
+
"@opendaw/lib-box": "^0.0.34",
|
|
30
|
+
"@opendaw/lib-dawproject": "^0.0.20",
|
|
31
|
+
"@opendaw/lib-dom": "^0.0.34",
|
|
32
|
+
"@opendaw/lib-dsp": "^0.0.34",
|
|
33
|
+
"@opendaw/lib-fusion": "^0.0.34",
|
|
34
|
+
"@opendaw/lib-runtime": "^0.0.34",
|
|
35
|
+
"@opendaw/lib-std": "^0.0.34",
|
|
36
|
+
"@opendaw/studio-adapters": "^0.0.35",
|
|
37
|
+
"@opendaw/studio-boxes": "^0.0.34",
|
|
38
|
+
"@opendaw/studio-enums": "^0.0.25",
|
|
39
39
|
"dropbox": "^10.34.0",
|
|
40
40
|
"y-websocket": "^1.4.5",
|
|
41
41
|
"yjs": "^13.6.27"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@opendaw/eslint-config": "^0.0.19",
|
|
45
|
-
"@opendaw/studio-core-processors": "^0.0.
|
|
46
|
-
"@opendaw/studio-core-workers": "^0.0.
|
|
47
|
-
"@opendaw/studio-forge-boxes": "^0.0.
|
|
45
|
+
"@opendaw/studio-core-processors": "^0.0.35",
|
|
46
|
+
"@opendaw/studio-core-workers": "^0.0.30",
|
|
47
|
+
"@opendaw/studio-forge-boxes": "^0.0.34",
|
|
48
48
|
"@opendaw/typescript-config": "^0.0.20"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "3197d0b9e1c6d9480aa6f29a41976a4685c0a0ff"
|
|
51
51
|
}
|