Skip to content

Releases: pixijs/sound

v5.1.1

10 Mar 17:18
Compare
Choose a tag to compare

🐛 Fixed

  • Fix suspend and resume correctly on mobile devices (#240)

v4.3.3

10 Mar 17:20
Compare
Choose a tag to compare

🐛 Fixed

  • Fix suspend and resume correctly on mobile devices (#240)

v5.1.0

03 Mar 14:40
Compare
Choose a tag to compare

🎁 Added

  • Create browser-based module bundle (#232)
  • Provide alternative resolver option for bundlers (#234)
  • Add isPlaying option to SoundLibrary (#235)

🐛 Fixed

  • Fix issue when attempting to play a sound that's still preloading (#233)
  • Change the default preferred order to load OGG, M4A before MP3 (07b7dd3)

🧹 Chores

  • Implement Extension Scripts toolchain (#232)

v4.3.2

03 Mar 14:56
Compare
Choose a tag to compare

🐛 Fixed

  • Ignore unsupported extensions with Loader plugin (#238)

v5.0.0

21 Sep 19:58
Compare
Choose a tag to compare

🔥 Breaking Changes

  • Support for PixiJS v7.0.0 (dropped support for Loader in PixiJS v5-6)
  • Output format is ES2017, dropped support for IE and some earlier browsers, consistent with PixiJS v7
  • sound.add no longer support multiple extensions syntax, but the new Assets package support for this syntax
// v4.x - add() supported format detection
import { sound } from '@pixi/sound';
sound.add('mySound', 'mySound.{ogg,mp3}');

// v5.x - Assets now supports format detection
import { Assets } from '@pixi/assets';
Assets.add('mySound', 'mySound.{ogg,mp3}');
await Assets.load('mySound');

v4.3.1

19 Sep 19:22
Compare
Choose a tag to compare

🐛 Fixed

  • Supports the extensions API available in PixiJS 6.5.0 (#220)

🧹 Chores

  • Restricts the peerDependencies to <7 to anticipate upcoming PixiJS major release (#220)

v4.3.0

05 Aug 20:14
Compare
Choose a tag to compare

🧹 Chore

  • Updated the module output to have ".mjs" extension to be compatible with Node.js (ea1ffe9)

v4.2.1

05 Aug 17:19
Compare
Choose a tag to compare

🐛 Fixed

v4.2.0

05 Jan 14:56
Compare
Choose a tag to compare

🎁 Added

🐛 Fixed

v4.1.1

03 Jan 16:07
Compare
Choose a tag to compare

🐛 Fixed

  • Fix inconsistencies with code and docs (#188) @yueyuzhao
  • SoundLibrary.add takes AudioBuffer as source type (#187) @yueyuzhao
  • Bump electron from 12.0.2 to 12.1.0 (#173)