@opendaw/studio-adapters 0.0.102 → 0.0.103
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.
|
@@ -11,6 +11,9 @@ export declare const EngineSettingsSchema: z.ZodObject<{
|
|
|
11
11
|
pauseOnLoopDisabled: z.ZodBoolean;
|
|
12
12
|
truncateNotesAtRegionEnd: z.ZodBoolean;
|
|
13
13
|
}, z.core.$strip>>;
|
|
14
|
+
debug: z.ZodDefault<z.ZodObject<{
|
|
15
|
+
dspLoadMeasurement: z.ZodBoolean;
|
|
16
|
+
}, z.core.$strip>>;
|
|
14
17
|
recording: z.ZodDefault<z.ZodObject<{
|
|
15
18
|
countInBars: z.ZodUnion<z.ZodLiteral<2 | 1 | 3 | 8 | 6 | 4 | 5 | 7>[]>;
|
|
16
19
|
allowTakes: z.ZodBoolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EnginePreferencesSchema.d.ts","sourceRoot":"","sources":["../../src/engine/EnginePreferencesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"EnginePreferencesSchema.d.ts","sourceRoot":"","sources":["../../src/engine/EnginePreferencesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;iBAuC/B,CAAA;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEjE,yBAAiB,cAAc,CAAC;IACrB,MAAM,sBAAsB,uBAA0B,CAAA;IACtD,MAAM,oBAAoB,mCAAwB,CAAA;IAClD,MAAM,sBAAsB,2CAA0B,CAAA;IACtD,MAAM,qBAAqB,mCAAyB,CAAA;CAC9D"}
|
|
@@ -24,6 +24,11 @@ export const EngineSettingsSchema = z.object({
|
|
|
24
24
|
pauseOnLoopDisabled: false,
|
|
25
25
|
truncateNotesAtRegionEnd: false
|
|
26
26
|
}),
|
|
27
|
+
debug: z.object({
|
|
28
|
+
dspLoadMeasurement: z.boolean()
|
|
29
|
+
}).default({
|
|
30
|
+
dspLoadMeasurement: false
|
|
31
|
+
}),
|
|
27
32
|
recording: z.object({
|
|
28
33
|
countInBars: z.union(_RecordingCountInBars.map(value => z.literal(value))),
|
|
29
34
|
allowTakes: z.boolean(),
|
|
@@ -26,7 +26,7 @@ export var PresetDecoder;
|
|
|
26
26
|
}
|
|
27
27
|
const sourceBoxGraph = new BoxGraph(Option.wrap(BoxIO.create));
|
|
28
28
|
try {
|
|
29
|
-
sourceBoxGraph.fromArrayBuffer(bytes.slice(8));
|
|
29
|
+
sourceBoxGraph.fromArrayBuffer(bytes.slice(8), false);
|
|
30
30
|
}
|
|
31
31
|
catch (reason) {
|
|
32
32
|
RuntimeNotifier.info({
|
|
@@ -77,7 +77,7 @@ export var ProjectSkeleton;
|
|
|
77
77
|
const boxGraphChunk = new Int8Array(boxGraphChunkLength);
|
|
78
78
|
input.readBytes(boxGraphChunk);
|
|
79
79
|
const boxGraph = new BoxGraph(Option.wrap(BoxIO.create));
|
|
80
|
-
boxGraph.fromArrayBuffer(boxGraphChunk.buffer);
|
|
80
|
+
boxGraph.fromArrayBuffer(boxGraphChunk.buffer, false);
|
|
81
81
|
return { boxGraph, mandatoryBoxes: ProjectSkeleton.findMandatoryBoxes(boxGraph) };
|
|
82
82
|
};
|
|
83
83
|
ProjectSkeleton.findMandatoryBoxes = (boxGraph) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/studio-adapters",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.103",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"test": "echo \"No tests to run\""
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@opendaw/lib-box": "^0.0.
|
|
27
|
-
"@opendaw/lib-dsp": "^0.0.
|
|
28
|
-
"@opendaw/lib-fusion": "^0.0.
|
|
29
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
30
|
-
"@opendaw/lib-std": "^0.0.
|
|
31
|
-
"@opendaw/studio-boxes": "^0.0.
|
|
32
|
-
"@opendaw/studio-enums": "^0.0.
|
|
26
|
+
"@opendaw/lib-box": "^0.0.81",
|
|
27
|
+
"@opendaw/lib-dsp": "^0.0.80",
|
|
28
|
+
"@opendaw/lib-fusion": "^0.0.88",
|
|
29
|
+
"@opendaw/lib-runtime": "^0.0.76",
|
|
30
|
+
"@opendaw/lib-std": "^0.0.75",
|
|
31
|
+
"@opendaw/studio-boxes": "^0.0.86",
|
|
32
|
+
"@opendaw/studio-enums": "^0.0.71",
|
|
33
33
|
"soundfont2": "^0.5.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@opendaw/eslint-config": "^0.0.27",
|
|
37
37
|
"@opendaw/typescript-config": "^0.0.29"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "ff6efcb5332559bb0ba064be829ab0d18a6ba226"
|
|
40
40
|
}
|