spessasynth_lib 3.20.8 → 3.20.10
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/package.json +1 -1
- package/synthetizer/synthetizer.js +2 -4
- package/synthetizer/worklet_processor.min.js +7 -7
- package/synthetizer/worklet_system/main_processor.js +1 -1
- package/synthetizer/worklet_system/worklet_methods/controller_control.js +6 -1
- package/synthetizer/worklet_system/worklet_methods/voice_control.js +2 -1
- package/synthetizer/worklet_system/worklet_utilities/volume_envelope.js +13 -4
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@ import { SoundfontManager } from './synth_soundfont_manager.js'
|
|
|
26
26
|
* @property {boolean|undefined} oneOutput - if synth should use one output with 32 channels (2 audio channels for each midi channel). this disables chorus and reverb.
|
|
27
27
|
*/
|
|
28
28
|
|
|
29
|
-
const CURRENT_SPESSASYNTH_VERSION = "3.20.
|
|
29
|
+
const CURRENT_SPESSASYNTH_VERSION = "3.20.10";
|
|
30
30
|
|
|
31
31
|
export const WORKLET_PROCESSOR_NAME = "spessasynth-worklet-system";
|
|
32
32
|
|
|
@@ -331,9 +331,7 @@ export class Synthetizer {
|
|
|
331
331
|
{
|
|
332
332
|
this.stopAll(true);
|
|
333
333
|
this.worklet.disconnect();
|
|
334
|
-
throw new Error(`Outdated
|
|
335
|
-
version: ${messageData}.
|
|
336
|
-
Please update it to the latest version (${CURRENT_SPESSASYNTH_VERSION})`);
|
|
334
|
+
throw new Error(`Outdated worklet_processor.min.js! version: ${messageData}. Please update it to ${CURRENT_SPESSASYNTH_VERSION}`);
|
|
337
335
|
}
|
|
338
336
|
}
|
|
339
337
|
}
|