diff --git a/CHANGELOG.md b/CHANGELOG.md index f4415ddb..2d0718cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # ChangeLog +## 3.8.4 + +- **Android:** Fix 'Reply already submitted' bug +- **ioS:** Return additional voice information fields (quality, gender, and identifier) +- **ioS:** Fix synthesizeToFile on iOS 17+ + ## 3.8.3 ### Fixes diff --git a/lib/flutter_tts.dart b/lib/flutter_tts.dart index 13efb3fd..9d1ddeff 100644 --- a/lib/flutter_tts.dart +++ b/lib/flutter_tts.dart @@ -507,6 +507,7 @@ class FlutterTts { /// [Future] which invokes the platform specific method for getVoices /// Returns a `List` of `Maps` containing a voice name and locale + /// For iOS specifically, it also includes quality, gender, and identifier /// ***Android, iOS, and macOS supported only*** Future get getVoices async { final voices = await _channel.invokeMethod('getVoices');