Skip to content

Commit b222f8c

Browse files
author
Thomas Dodds
committed
Superpowered JS SDK v2.6.8
1) Fix for AudioInMemory dynamic content loading 2) Fix for potential infinite loop in AAC decoding
1 parent 4e86cd3 commit b222f8c

File tree

7 files changed

+873
-4
lines changed

7 files changed

+873
-4
lines changed

dist/Superpowered.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class SuperpoweredGlue {
55

6-
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.7/dist/superpowered-npm.wasm"
6+
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.8/dist/superpowered-npm.wasm"
77

88
niceSize(bytes) {
99
if (bytes == 0) return '0 byte'; else if (bytes == 1) return '1 byte';

dist/superpowered-npm.wasm

544 Bytes
Binary file not shown.

dist/superpowered.wasm

544 Bytes
Binary file not shown.

examples/example_effects/Superpowered.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class SuperpoweredGlue {
55

6-
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.7/dist/superpowered-npm.wasm"
6+
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.8/dist/superpowered-npm.wasm"
77

88
niceSize(bytes) {
99
if (bytes == 0) return '0 byte'; else if (bytes == 1) return '1 byte';

examples/example_guitardistortion/Superpowered.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class SuperpoweredGlue {
55

6-
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.7/dist/superpowered-npm.wasm"
6+
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.8/dist/superpowered-npm.wasm"
77

88
niceSize(bytes) {
99
if (bytes == 0) return '0 byte'; else if (bytes == 1) return '1 byte';

examples/example_pitchbend/Superpowered.js

Lines changed: 869 additions & 0 deletions
Large diffs are not rendered by default.

examples/example_timestretching/Superpowered.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class SuperpoweredGlue {
55

6-
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.7/dist/superpowered-npm.wasm"
6+
static wasmCDNUrl = "https://cdn.jsdelivr.net/npm/@superpoweredsdk/web@2.6.8/dist/superpowered-npm.wasm"
77

88
niceSize(bytes) {
99
if (bytes == 0) return '0 byte'; else if (bytes == 1) return '1 byte';

0 commit comments

Comments
 (0)