From ca88c453bdde95da67781b8be88ac8d17d19d3f1 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 23 Nov 2023 13:56:14 -0800 Subject: [PATCH] updating changelog and adding code comment --- CHANGELOG.md | 6 ++++++ lib/flutter_tts.dart | 1 + 2 files changed, 7 insertions(+) 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');