Releases: pixijs/sound
Releases · pixijs/sound
v3.0.4
v3.0.3
v3.0.2
This is a test release to check deployment using Travis, there are no functional code differences between v3.0.1.
v3.0.1
🐛 Fixed
- Fixes critical typings issue that prevents building (57f7eb2)
👏 Contributors
- Matt Karl (@bigtimebuddy)
v3.0.0
Overview
This PR officially drops support for PixiJS v4. If you are not ready to move forward, continue to use version ^2.0.0
.
This uses the low-level packages (i.e., @pixi/core
) for better tree-shaking support with bundlers like Webpack (working example). Internally this publishes three flavors of builds:
- CommonJS (bundlers without module support)
- ESM (bundlers like Webpack + Rollup + Parcel)
- IIFE (browser only)
Building in the UMD has been removed.
🎁 Added
- Adds support for
set(name, value)
method to the IMediaInstance. This will make it possible to do stuff like thisPIXI.sound.play('foo').set('volume', 0.5)
(Inspired by #98 & @djmisterjon) (#106)
✏️ Changed
- Updates the demos CSS to match the documentation and other PixiJS websites.
👏 Contributors
- Matt Karl (@bigtimebuddy)
v2.1.4
v2.1.3
🐛 Fixed
- Fixes issue with PixiJS v5 compatibility with examples (waveform rendering missing)
- Re-adds missing extension to mime type override
v2.1.2
v2.1.1
🐛 Fixed
- Select buffer size automatically by setting 0 (#88)
- Fixed
pauseAll
not working in legacy mode (64c0904)
👏 Contributors
- Tomohiro IKEDA (@Korilakkuma)
- Matt Karl (@bigtimebuddy)
v2.1.0
🎁 Added
- Sound sprite looping enabled for WebAudio (#81)
- Supports PixiJS v5 (#82)
- Decode throw DomException message (#83)
👏 Contributors
- @Patrick-Hammond
- Matt Karl (@bigtimebuddy)
- @Yuzeyang