prepare 0.5.8
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 0.5.8
|
||||
|
||||
* Fixes simulcast issues with Android devices.
|
||||
* Adds ability to select capture device by id.
|
||||
* `serverRegion` property on Room.
|
||||
* Minor optimizations.
|
||||
|
||||
## 0.5.7
|
||||
|
||||
* Using WebRTC version M97.
|
||||
|
||||
@@ -7,7 +7,7 @@ PODS:
|
||||
- Libyuv (= 1703)
|
||||
- WebRTC-SDK (= 97.4692.02)
|
||||
- Libyuv (1703)
|
||||
- livekit_client (0.5.7):
|
||||
- livekit_client (0.5.8):
|
||||
- Flutter
|
||||
- WebRTC-SDK (~> 97.4692)
|
||||
- path_provider_ios (0.0.1):
|
||||
@@ -48,11 +48,11 @@ SPEC CHECKSUMS:
|
||||
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
|
||||
flutter_webrtc: 3fd57d5bd9b6ce85d12d37f6f68d97be3b80509f
|
||||
Libyuv: 5f79ced0ee66e60a612ca97de1e6ccacd187a437
|
||||
livekit_client: e8e7356f5efe910ffd7b1519343ad83c65d30a2a
|
||||
path_provider_ios: 7d7ce634493af4477d156294792024ec3485acd5
|
||||
livekit_client: 68df5f0ed045accdd5b14be7e68e4caedc0167a7
|
||||
path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02
|
||||
shared_preferences_ios: 548a61f8053b9b8a49ac19c1ffbc8b92c50d68ad
|
||||
WebRTC-SDK: dda4e50186f9eed672dc6bcf4faafb30c6ce48e3
|
||||
|
||||
PODFILE CHECKSUM: 82aed1035f46bfa5b522f0d0dbf4730f17ec65ff
|
||||
|
||||
COCOAPODS: 1.11.2
|
||||
COCOAPODS: 1.11.3
|
||||
|
||||
@@ -5,7 +5,7 @@ PODS:
|
||||
- FlutterMacOS
|
||||
- WebRTC-SDK (= 97.4692.02)
|
||||
- FlutterMacOS (1.0.0)
|
||||
- livekit_client (0.5.7):
|
||||
- livekit_client (0.5.8):
|
||||
- FlutterMacOS
|
||||
- WebRTC-SDK (~> 97.4692)
|
||||
- path_provider_macos (0.0.1):
|
||||
@@ -44,7 +44,7 @@ SPEC CHECKSUMS:
|
||||
device_info_plus_macos: 1ad388a1ef433505c4038e7dd9605aadd1e2e9c7
|
||||
flutter_webrtc: cbfa010d869391079d6713d9e0f1cda7dde7a407
|
||||
FlutterMacOS: 57701585bf7de1b3fc2bb61f6378d73bbdea8424
|
||||
livekit_client: dce558aa1338395e7803b31ec313f6362f9b53ca
|
||||
livekit_client: a7482ba347ba089d0ac80564b44297d4563c7c1f
|
||||
path_provider_macos: 160cab0d5461f0c0e02995469a98f24bdb9a3f1f
|
||||
shared_preferences_macos: a64dc611287ed6cbe28fd1297898db1336975727
|
||||
WebRTC-SDK: dda4e50186f9eed672dc6bcf4faafb30c6ce48e3
|
||||
|
||||
@@ -225,7 +225,7 @@ packages:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.5.7"
|
||||
version: "0.5.8"
|
||||
logging:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -295,14 +295,14 @@ packages:
|
||||
name: path_provider_android
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.11"
|
||||
version: "2.0.12"
|
||||
path_provider_ios:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: path_provider_ios
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.7"
|
||||
version: "2.0.8"
|
||||
path_provider_linux:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -468,7 +468,7 @@ packages:
|
||||
name: synchronized
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.0"
|
||||
version: "3.0.0+2"
|
||||
term_glyph:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -517,7 +517,7 @@ packages:
|
||||
name: win32
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.4.1"
|
||||
version: "2.5.1"
|
||||
xdg_directories:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
||||
@@ -12,7 +12,7 @@ dependencies:
|
||||
sdk: flutter
|
||||
|
||||
intl: ^0.17.0
|
||||
flutter_background: 1.1.0
|
||||
flutter_background: ^1.1.0
|
||||
provider: ^6.0.1
|
||||
logging: ^1.0.1
|
||||
shared_preferences: ^2.0.11
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'livekit_client'
|
||||
s.version = '0.5.7'
|
||||
s.version = '0.5.8'
|
||||
s.summary = 'Open source platform for real-time audio and video.'
|
||||
s.description = 'Open source platform for real-time audio and video.'
|
||||
s.homepage = 'https://livekit.io/'
|
||||
|
||||
@@ -4,7 +4,7 @@ import 'options.dart';
|
||||
/// Main entry point to connect to a room.
|
||||
/// {@category Room}
|
||||
class LiveKitClient {
|
||||
static const version = '0.5.7';
|
||||
static const version = '0.5.8';
|
||||
|
||||
/// Convenience method for connecting to a LiveKit server.
|
||||
/// Returns a [Room] upon a successful connect or throws when it fails.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'livekit_client'
|
||||
s.version = '0.5.7'
|
||||
s.version = '0.5.8'
|
||||
s.summary = 'Open source platform for real-time audio and video.'
|
||||
s.description = 'Open source platform for real-time audio and video.'
|
||||
s.homepage = 'https://livekit.io/'
|
||||
|
||||
+6
-6
@@ -7,14 +7,14 @@ packages:
|
||||
name: _fe_analyzer_shared
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "36.0.0"
|
||||
version: "38.0.0"
|
||||
analyzer:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: analyzer
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.3.1"
|
||||
version: "3.4.1"
|
||||
args:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -112,7 +112,7 @@ packages:
|
||||
name: dart_style
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.1"
|
||||
version: "2.2.2"
|
||||
dart_webrtc:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -393,7 +393,7 @@ packages:
|
||||
name: pub_semver
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.0"
|
||||
version: "2.1.1"
|
||||
sky_engine:
|
||||
dependency: transitive
|
||||
description: flutter
|
||||
@@ -440,7 +440,7 @@ packages:
|
||||
name: synchronized
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.0"
|
||||
version: "3.0.0+2"
|
||||
term_glyph:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -503,7 +503,7 @@ packages:
|
||||
name: win32
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.4.1"
|
||||
version: "2.5.1"
|
||||
xdg_directories:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
||||
+1
-1
@@ -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.7
|
||||
version: 0.5.8
|
||||
homepage: https://livekit.io
|
||||
|
||||
environment:
|
||||
|
||||
Reference in New Issue
Block a user