Releases: pixijs/sound
Releases · pixijs/sound
v4.1.0
🎁 Added
- Add AudioBuffer as a source type for Sound (#178) @yueyuzhao
- Add StreamFilter (#180) @yueyuzhao
v4.0.6
v4.0.5
v4.0.4
🔗 Links
🔬 https://sound.pixijs.download/v4.0.4/examples/index.html
📖 https://sound.pixijs.download/v4.0.4/docs/index.html
💾 https://sound.pixijs.download/v4.0.4/pixi-sound.js
🐛 Fixed
- Add PlayOptions start parameter support for sound sprites (#162) @qtiki
- Add stricter types for event callbacks (#164) @bigtimebuddy
v4.0.3
🔗 Links
🔬 https://sound.pixijs.download/v4.0.3/examples/index.html
📖 https://sound.pixijs.download/v4.0.3/docs/index.html
💾 https://sound.pixijs.download/v4.0.3/pixi-sound.js
🐛 Fixed
- Removes
engines
on publish to allow Yarn installation (1cb4d90)
v2.1.5
v4.0.2
v4.0.1
🔗 Links
🔬 https://sound.pixijs.download/v4.0.1/examples/index.html
📖 https://sound.pixijs.download/v4.0.1/docs/index.html
💾 https://sound.pixijs.download/v4.0.1/pixi-sound.js
🐛 Fixed
- Support PixiJS v5 with peerDependencies, see example of building PixiJS v5 with Sound v4 with TypeScript + Webpack.
v4.0.0
🔗 Links
🔬 http://sound.pixijs.download/v4.0.0/examples/index.html
📖 http://sound.pixijs.download/v4.0.0/docs/index.html
💾 http://sound.pixijs.download/v4.0.0/pixi-sound.js
🔥 Breaking Changes
- Package name changed from
pixi-sound
to@pixi/sound
- No more default export for CommonJS and ESM bundles. For example:
// v3 and before
import sound from 'pixi-sound';
// v4+, now becomes
import { sound } from '@pixi/sound';
✏️ Changed
- Now supports PixiJS v6, with proper package typings (still works with v5)
- TypeScript declarations are now generated from src
🐛 Fixed
- Fixes unhandledRejection by
decodeAudioData
(#143) @windyrain