supersonic-scsynth 0.1.7 → 0.1.8

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.
@@ -1738,7 +1738,7 @@ var SuperSonic = class {
1738
1738
  const response = await fetch(manifestUrl);
1739
1739
  if (response.ok) {
1740
1740
  const manifest = await response.json();
1741
- const wasmFile = this.config.development ? manifest.wasmFile : manifest.wasmFileStable;
1741
+ const wasmFile = manifest.wasmFile;
1742
1742
  this.config.wasmUrl = new URL(`wasm/${wasmFile}`, this.basePath).href;
1743
1743
  console.log(`[SuperSonic] Using WASM build: ${wasmFile}`);
1744
1744
  console.log(`[SuperSonic] Build: ${manifest.buildId} (git: ${manifest.gitHash})`);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "wasmFile": "scsynth-nrt.wasm",
3
- "buildId": "20251104-224940",
4
- "buildTime": "2025-11-04T22:49:40Z",
5
- "gitHash": "2f2f43b"
3
+ "buildId": "20251104-230238",
4
+ "buildTime": "2025-11-04T23:02:38Z",
5
+ "gitHash": "5d25004"
6
6
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supersonic-scsynth",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
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",