supersonic-scsynth 0.2.0 → 0.2.1

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.
@@ -799,9 +799,9 @@ var ScsynthOSC = class {
799
799
  this.ringBufferBase = ringBufferBase;
800
800
  this.bufferConstants = bufferConstants;
801
801
  try {
802
- this.workers.oscOut = new Worker("./dist/workers/osc_out_prescheduler_worker.js");
803
- this.workers.oscIn = new Worker("./dist/workers/osc_in_worker.js");
804
- this.workers.debug = new Worker("./dist/workers/debug_worker.js");
802
+ this.workers.oscOut = new Worker(new URL("./workers/osc_out_prescheduler_worker.js", import.meta.url));
803
+ this.workers.oscIn = new Worker(new URL("./workers/osc_in_worker.js", import.meta.url));
804
+ this.workers.debug = new Worker(new URL("./workers/debug_worker.js", import.meta.url));
805
805
  this.setupWorkerHandlers();
806
806
  const initPromises = [
807
807
  this.initWorker(this.workers.oscOut, "OSC SCHEDULER+WRITER"),
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "wasmFile": "scsynth-nrt.wasm",
3
- "buildId": "20251112-224002",
4
- "buildTime": "2025-11-12T22:40:02Z",
5
- "gitHash": "82a71b5"
3
+ "buildId": "20251114-215318",
4
+ "buildTime": "2025-11-14T21:53:18Z",
5
+ "gitHash": "402d831"
6
6
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supersonic-scsynth",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "SuperCollider scsynth WebAssembly port for AudioWorklet - Run SuperCollider synthesis in the browser",
5
5
  "main": "dist/supersonic.js",
6
6
  "unpkg": "dist/supersonic.js",