|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). |
| 5 | + |
| 6 | +## [Unreleased] |
| 7 | +### BREAKING CHANGE |
| 8 | +- Android: Remove permissions from library AndroidManifest and instead require users to add them. See [SETUP.md](https://github.com/react-native-community/react-native-audio-toolkit/blob/master/docs/SETUP.md) and PR [#148](https://github.com/react-native-community/react-native-audio-toolkit/pull/148) for more details |
| 9 | + |
| 10 | +### Added |
| 11 | +- Add Typescript typings |
| 12 | +- Add ability to set playback speed for audio player |
| 13 | +- Add ability to pause a Recorder |
| 14 | +- Android: Add ability to record to AAC |
| 15 | +- iOS: Added possibility to record from Bluetooth microphone |
| 16 | + |
| 17 | +### Changed |
| 18 | +- Specify exactly which files to include in npm package |
| 19 | +- Android: `build.gradle` will use SDK version settings of the root project, if available |
| 20 | +- iOS: Buffer up to 10 seconds of audio before beginning playback |
| 21 | + |
| 22 | +### Fixed |
| 23 | +- Fixed some incorrect examples in the documentation |
| 24 | +- Android: Guard against possible exceptions while parsing stack trace |
| 25 | +- Android: Fix build error related to defining `android:minSdkVersion` in the libraries AndroidManifest |
| 26 | +- Android: Fix crash on devices running API level 22 or earlier |
| 27 | +- iOS: Fix `Player.pause()` not setting `PAUSED` state |
| 28 | + |
| 29 | +## [1.0.6] - 2017-11-01 |
| 30 | +### Changed |
| 31 | +- Android: Changed prepare to prepareAsync |
| 32 | + |
| 33 | +### Fixed |
| 34 | +- Fix compatibility with React Native 0.47 |
| 35 | +- Fix compatibility with React Native 0.48 |
| 36 | +- Fix compatibility with React Native 0.49 |
| 37 | +- Android: Fix updating playerContinueInBackground |
| 38 | +- Android: Fix a bug when finding audio file |
| 39 | +- Android: Fix compatibility with API level 16 by removing usage of `java.util.Objects` |
| 40 | + |
| 41 | +## [1.0.5] - 2016-09-22 |
| 42 | +### Changed |
| 43 | +- Android: By default pause playback if app is sent to background |
| 44 | + |
| 45 | +## [1.0.4] - 2016-08-26 |
| 46 | +### Fixed |
| 47 | +- iOS: Fix audio events |
| 48 | + |
| 49 | +## [1.0.3] - 2016-08-17 |
| 50 | +### Added |
| 51 | +- Add Player state diagram to documentation |
| 52 | +- Add recording example to README.md |
| 53 | +- Record `prepare()` returns filesystem path of file being recorded to |
| 54 | + |
| 55 | +### Fixed |
| 56 | +- Missing `this` in setup example |
| 57 | + |
| 58 | +## [1.0.2] - 2016-06-25 |
| 59 | +### Added |
| 60 | +- Add description to package.json |
| 61 | + |
| 62 | +## [1.0.1] - 2016-06-25 |
| 63 | +### Added |
| 64 | +- Add repository to package.json |
| 65 | +- Add error handling to Example App |
| 66 | +- iOS: Send current position at pause |
| 67 | + |
| 68 | +### Changed |
| 69 | +- Move documentation from README.md to separate files within docs directory |
| 70 | +- Improve documentation |
| 71 | +- Restructure Player and Recorder into own source files |
| 72 | + |
| 73 | +### Fixed |
| 74 | +- Android: Fix seeking, hide debug prints |
| 75 | +- Android: Fix stop bug |
| 76 | +- iOS: Fixed parsing of quality strings |
| 77 | + |
| 78 | +## 1.0.0 - 2016-06-25 |
| 79 | + |
| 80 | +Initial release. |
| 81 | + |
| 82 | + |
| 83 | +[Unreleased]: https://github.com/react-native-community/react-native-audio-toolkit/compare/dc2f04a35f388016aa294bcc80e7f553d1988037...HEAD |
| 84 | +[1.0.6]: https://github.com/react-native-community/react-native-audio-toolkit/compare/4746870166fe4beb9fbf075d45fab952de4558d6...dc2f04a35f388016aa294bcc80e7f553d1988037 |
| 85 | +[1.0.5]: https://github.com/react-native-community/react-native-audio-toolkit/compare/6a2641ebc6b6177fa29ac81b694ea2dd64d5a2cd...4746870166fe4beb9fbf075d45fab952de4558d6 |
| 86 | +[1.0.4]: https://github.com/react-native-community/react-native-audio-toolkit/compare/eba2326941e9b2f4405e832ce5af0a85bf6817ef...6a2641ebc6b6177fa29ac81b694ea2dd64d5a2cd |
| 87 | +[1.0.3]: https://github.com/react-native-community/react-native-audio-toolkit/compare/24dc361c950c2f4a919d557c4b2c7abecb28c6e8...eba2326941e9b2f4405e832ce5af0a85bf6817ef |
| 88 | +[1.0.2]: https://github.com/react-native-community/react-native-audio-toolkit/compare/3384ceff8bdf34904b09abb34602f8f4120bcb9e...24dc361c950c2f4a919d557c4b2c7abecb28c6e8 |
| 89 | +[1.0.1]: https://github.com/react-native-community/react-native-audio-toolkit/compare/05523e1181ee0a8d41d0e4db9f192d2d48be2bb4...3384ceff8bdf34904b09abb34602f8f4120bcb9e |
0 commit comments