@opendaw/lib-fusion 0.0.65 → 0.0.66
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/peaks/Peaks.js +2 -2
- package/package.json +6 -6
package/dist/peaks/Peaks.js
CHANGED
|
@@ -37,7 +37,7 @@ export class SamplePeaks {
|
|
|
37
37
|
const dataOffset = input.readInt();
|
|
38
38
|
const numPeaks = input.readInt();
|
|
39
39
|
const shift = input.readInt();
|
|
40
|
-
input.readInt(); //
|
|
40
|
+
input.readInt(); // deprecated (was mask)
|
|
41
41
|
stages[i] = new Peaks.Stage(shift, numPeaks, dataOffset);
|
|
42
42
|
}
|
|
43
43
|
const numData = input.readInt();
|
|
@@ -90,7 +90,7 @@ export class SamplePeaks {
|
|
|
90
90
|
output.writeInt(dataOffset);
|
|
91
91
|
output.writeInt(numPeaks);
|
|
92
92
|
output.writeInt(shift);
|
|
93
|
-
output.writeInt(
|
|
93
|
+
output.writeInt(0); // deprecated (was mask)
|
|
94
94
|
}
|
|
95
95
|
output.writeInt(this.data.length);
|
|
96
96
|
for (let i = 0; i < this.data.length; i++) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/lib-fusion",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.66",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "LGPL-3.0-or-later",
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
"test": "vitest run"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@opendaw/lib-box": "^0.0.
|
|
27
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
28
|
-
"@opendaw/lib-std": "^0.0.
|
|
26
|
+
"@opendaw/lib-box": "^0.0.63",
|
|
27
|
+
"@opendaw/lib-runtime": "^0.0.62",
|
|
28
|
+
"@opendaw/lib-std": "^0.0.62"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@opendaw/eslint-config": "^0.0.27",
|
|
32
|
-
"@opendaw/typescript-config": "^0.0.
|
|
32
|
+
"@opendaw/typescript-config": "^0.0.28",
|
|
33
33
|
"jsdom": "^25.0.1",
|
|
34
34
|
"vitest": "^2.1.8"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "100e759378d7150e6eb7165232d8c4a1fbb77bbc"
|
|
37
37
|
}
|