diff --git a/CHANGELOG.md b/CHANGELOG.md index f1952e17..f36528a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.1.19 + +- Fix video aspect ratio + +- Add property to decide whether to enable video fullscreen + +- Add property to hide the attachment button + +- Do not show send button if an attachment is still uploading + +- Unfocus and disable the TextField before opening the camera (workaround for flutter/flutter#42417) + +- Add gesture (vertical drag down) to close the keyboard + +- Add keyboard type parameters (set it to TextInputType.text to show the submit button that will even close the keyboard) + +The property showVideoFullScreen was added mainly because of this issue brianegan/chewie#261 + ## 0.1.18 - Add message list date separators diff --git a/README.md b/README.md index 3359a941..1c1c6b4a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The example is available under the [example](https://github.com/GetStream/stream ```yaml dependencies: - stream_chat_flutter: ^0.1.15 + stream_chat_flutter: ^0.1.19 ``` You should then run `flutter packages get` diff --git a/pubspec.yaml b/pubspec.yaml index f1e2618e..baae5c67 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: stream_chat_flutter homepage: https://github.com/GetStream/stream-chat-flutter description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter. -version: 0.1.18 +version: 0.1.19 environment: sdk: ">=2.3.0 <3.0.0"