diff --git a/CHANGELOG.md b/CHANGELOG.md index 435d45e..d4e84d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,23 @@ # CHANGELOG +## 0.5.5 + +* Default capture options for setCameraEnabled, setMicrophoneEnabled +* Track stream update events +* Room instance can be created without connecting +* Release Camera/Mic when track is muted +* Better type handling +* Option to unpublish without stopping track +* Fixed RemoteTrackPublication mute events +* Initial Windows support + ## 0.5.4 * Screen sharing support for Android * Fixed TrackPublication/Track mute status * Fixed bug with updateTrack * Fixed being able to apply capture resolution constraints -* initial macOS support +* Initial macOS support ## 0.5.3 diff --git a/example/pubspec.lock b/example/pubspec.lock index eaab409..20034a2 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -176,7 +176,7 @@ packages: path: ".." relative: true source: path - version: "0.5.4" + version: "0.5.5" logging: dependency: "direct main" description: diff --git a/lib/src/livekit.dart b/lib/src/livekit.dart index 3f12fc5..2892389 100644 --- a/lib/src/livekit.dart +++ b/lib/src/livekit.dart @@ -4,7 +4,7 @@ import 'room.dart'; /// Main entry point to connect to a room. /// {@category Room} class LiveKitClient { - static const version = '0.5.4'; + static const version = '0.5.5'; /// Convenience method for connecting to a LiveKit server. /// Returns a [Room] upon a successful connect or throws when it fails. diff --git a/pubspec.yaml b/pubspec.yaml index d61ea02..ce5a345 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: livekit_client description: Flutter Client SDK for LiveKit. Build real-time video and audio into your apps. Supports iOS, Android, and Web. -version: 0.5.4 +version: 0.5.5 homepage: https://livekit.io environment: