Releases: pixijs/sound
Releases · pixijs/sound
v5.1.1
v4.3.3
v5.1.0
🎁 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
v5.0.0
🔥 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
v4.3.0
v4.2.1
🐛 Fixed
- Fix Uncaught DOMException in Firefox (#197) @gorisanson
- Fix error when Safari rejects with null (#208) @miltoncandelero
v4.2.0
🎁 Added
- Add singleInstance to play options (#189) @bigtimebuddy
- Add support for GlobalMixins (#190) @bigtimebuddy
- Editing function to basic sample codes (#186) @yueyuzhao
- Modernize documentation (#191) @bigtimebuddy
- Add filters to audio instances (#193) @yueyuzhao
🐛 Fixed
- Remove workaround for namespace exports (#192) @bigtimebuddy
v4.1.1
🐛 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)