diff --git a/CHANGELOG.md b/CHANGELOG.md index 58e46cc..7ca0c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All changes to this project will be documented in this file. +## [1.2.0] - 2024-02-12 + +- Add a `fit` parameter to `ApiVideoCameraPreview` to control the fit of the preview inside its + parent widget +- Improve and fix few video resolution issues +- Android: The package automatically requests the camera and microphone permissions +- Android: upgrade gradle, kotlin, AGP and other dependencies +- iOS: add missing `getVideoSize` method +- iOS: send events from the main thread +- Example: lower default bitrate to run the example effortlessly +- Example: enable wake lock to keep the device awake during the live stream +- Example: put the application in the safe area + ## [1.1.3] - 2023-10-16 - Android: call `disconnect` event when `stopStream` is explicitly called diff --git a/README.md b/README.md index ad3ff46..5560aff 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ This module is made for broadcasting RTMP live stream from smartphone camera. ### Installation -Run the following command at the root of your project. +Run the following command at the root of your project: ```shell flutter pub add apivideo_live_stream diff --git a/pubspec.yaml b/pubspec.yaml index 3cbdbb4..508ea76 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: apivideo_live_stream description: Flutter RTMP live stream client for your audio/video application. Made with ♥ by api.video. -version: 1.1.3 +version: 1.2.0 repository: https://github.com/apivideo/api.video-flutter-live-stream issue_tracker: https://github.com/apivideo/api.video-flutter-live-stream/issues homepage: https://api.video