Skip to content

Releases: ak1394/react-native-tts

Android improvements

04 Jul 21:25
5b313b9
Compare
Choose a tag to compare

This release has improved error detection and helper functions to install TTS engine & language data on Android contributed by @IjzerenHein

New APIs and misc fixes

30 Jan 01:13
Compare
Choose a tag to compare

This release features several API changes: getInitStatus() call has been added to wait for engine readiness; speak() call now allows for additional parameter to pass platform specific options; voices() call returns more data about.

Additionally, number of warnings and a memory leak has been fixed.

Thanks to all who contributed to the release!

Minor release addding a podfile

05 Oct 22:04
Compare
Choose a tag to compare

This is a minor release with a podfile added by a @slycoder

Resolve compatibility issues with react-native v0.47.0

13 Aug 15:51
Compare
Choose a tag to compare

Merge changes from @slycoder to address build issues with recent react native release, plus some cleanup.

Audio ducking and pitch

20 Apr 20:55
Compare
Choose a tag to compare

This release adds two new calls: setDucking(true) to enable lowering other applications output level while speaking (also referred to as "ducking"), and Tts.setDefaultPitch() to set pitch.

Thanks to @se1exin and @kamwong3 for their contributions!

Better error handling for setDefaultLanguage() calls and minSdkVersion aligned with 0.41.2 react-native

26 Feb 18:45
Compare
Choose a tag to compare

This release contains change from @IjzerenHein to provide better error reporting when calling setDefaultLanguage() with invalid language. Also, the minSdkVersion on Android has been set to 16 to align with react-native v0.41.2.

Optionally, turn off speech rate value translation

28 Jan 00:12
Compare
Choose a tag to compare

By default setDefaultRate(rate) API call performs translation of rate value to provide unified cross-platform behaviour. This release adds optional skipTransform parameter to this API call to turn translation off.

Resolve compatibility issues with react-native v0.40.0

20 Jan 21:58
Compare
Choose a tag to compare

This release of react-native-tts contains no new features or api changes, but addresses compatibility issue with React Native v0.40.0 on iOS.

Since this change breaks react-native-tts when used with older React Native releases, I'm bumping major version number.

Allow changing default speech rate

05 Jan 22:54
Compare
Choose a tag to compare

This version adds new API call setDefaultRate() to set default speech rate. Thanks to @maslianok for PR.

Change event format on iOS

14 Dec 01:09
Compare
Choose a tag to compare

This release changes format of TTS events on iOS. Now, event listeners will receive event parameter which is an object with utteranceId key, same as on Android.