Releases: leoasis/react-sound
Releases Β· leoasis/react-sound
v1.2.0
v1.1.0
v1.0.0
- New
playbackRate
prop (#53 Thanks @Akurganow! π ) - Use late-bound props when calling sound callbacks. Causes most recent callback props to be called. Fixes #16.
- Update soundmanager2 required version.
- Add support for React 16, and move React to peer deps.
- Use
process.env.NODE_ENV
to determine which build to use for soundmanager2. In prod the nodebug build is used. (Fixes #13, #42)
v0.10.0
v0.9.0
v0.8.0
v0.7.0
v0.6.2
v0.6.1
v0.6.0
- Use
prop-types
package to avoid warnings with react 15.5. Drop support for react < 15 (#28 Thanks @vmasto!) - Use babel 6 to build the library. If requiring this library using
require
, you'll need to access thedefault
propertly, like this:
// Don't do this:
// var Sound = require('react-sound');
// Instead, do this:
var Sound = require('react-sound').default;