prepare for 0.5.3
This commit is contained in:
@@ -162,7 +162,7 @@ packages:
|
|||||||
path: ".."
|
path: ".."
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "0.5.2"
|
version: "0.5.3"
|
||||||
logging:
|
logging:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'livekit_client'
|
s.name = 'livekit_client'
|
||||||
s.version = '0.5.2'
|
s.version = '0.5.3'
|
||||||
s.summary = 'Open source platform for real-time audio and video.'
|
s.summary = 'Open source platform for real-time audio and video.'
|
||||||
s.description = '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/'
|
s.homepage = 'https://livekit.io/'
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import 'room.dart';
|
|||||||
/// Main entry point to connect to a room.
|
/// Main entry point to connect to a room.
|
||||||
/// {@category Room}
|
/// {@category Room}
|
||||||
class LiveKitClient {
|
class LiveKitClient {
|
||||||
static const version = '0.4.0';
|
static const version = '0.5.3';
|
||||||
|
|
||||||
/// Connects to a LiveKit room
|
/// Connects to a LiveKit room
|
||||||
static Future<Room> connect(
|
static Future<Room> connect(
|
||||||
|
|||||||
+2
-2
@@ -3,10 +3,10 @@ import 'dart:async';
|
|||||||
import 'package:flutter_webrtc/flutter_webrtc.dart' as rtc;
|
import 'package:flutter_webrtc/flutter_webrtc.dart' as rtc;
|
||||||
|
|
||||||
import 'extensions.dart';
|
import 'extensions.dart';
|
||||||
|
import 'livekit.dart';
|
||||||
import 'options.dart';
|
import 'options.dart';
|
||||||
import 'track/options.dart';
|
import 'track/options.dart';
|
||||||
import 'types.dart';
|
import 'types.dart';
|
||||||
import 'version.dart';
|
|
||||||
|
|
||||||
extension UriExt on Uri {
|
extension UriExt on Uri {
|
||||||
bool get isSecureScheme => ['https', 'wss'].contains(scheme);
|
bool get isSecureScheme => ['https', 'wss'].contains(scheme);
|
||||||
@@ -50,7 +50,7 @@ class Utils {
|
|||||||
if (reconnect) 'reconnect': '1',
|
if (reconnect) 'reconnect': '1',
|
||||||
'protocol': protocol.toStringValue(),
|
'protocol': protocol.toStringValue(),
|
||||||
'sdk': 'flutter',
|
'sdk': 'flutter',
|
||||||
'version': clientVersion,
|
'version': LiveKitClient.version,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
const clientVersion = '0.5.0';
|
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
name: livekit_client
|
name: livekit_client
|
||||||
description: Flutter Client SDK for LiveKit.
|
description: Flutter Client SDK for LiveKit.
|
||||||
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
|
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
|
||||||
version: 0.5.2
|
version: 0.5.3
|
||||||
homepage: https://livekit.io
|
homepage: https://livekit.io
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user