release: 1.1.1-hotfix. (#160)
* release: 1.1.1-hotfix. * fix analyze for flutter 3.3.0
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
## 1.1.1-hotfix
|
||||||
|
|
||||||
|
* Fix compilation error caused by webrtc-interface version jumping.
|
||||||
|
|
||||||
## 1.1.1
|
## 1.1.1
|
||||||
|
|
||||||
* Add hardware api for camera and audio input/output selection.
|
* Add hardware api for camera and audio input/output selection.
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ packages:
|
|||||||
path: ".."
|
path: ".."
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "1.1.1"
|
version: "1.1.1-hotifx"
|
||||||
logging:
|
logging:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -134,13 +134,13 @@ abstract class EventsListenable<T> extends Disposable {
|
|||||||
_listeners.add(listener);
|
_listeners.add(listener);
|
||||||
|
|
||||||
// make a cancel func to cancel listening and remove from list in 1 call
|
// make a cancel func to cancel listening and remove from list in 1 call
|
||||||
_cancelFunc() async {
|
cancelFunc() async {
|
||||||
await listener.cancel();
|
await listener.cancel();
|
||||||
_listeners.remove(listener);
|
_listeners.remove(listener);
|
||||||
logger.fine('${objectId} event was cancelled by func');
|
logger.fine('${objectId} event was cancelled by func');
|
||||||
}
|
}
|
||||||
|
|
||||||
return _cancelFunc;
|
return cancelFunc;
|
||||||
}
|
}
|
||||||
|
|
||||||
// convenience method to listen & filter a specific event type
|
// convenience method to listen & filter a specific event type
|
||||||
|
|||||||
+3
-2
@@ -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: 1.1.1
|
version: 1.1.1-hotfix
|
||||||
homepage: https://livekit.io
|
homepage: https://livekit.io
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
@@ -15,6 +15,7 @@ dependencies:
|
|||||||
sdk: flutter
|
sdk: flutter
|
||||||
async: ^2.6.1
|
async: ^2.6.1
|
||||||
collection: ^1.15.0
|
collection: ^1.15.0
|
||||||
|
connectivity_plus: ^2.3.6+1
|
||||||
fixnum: ^1.0.1
|
fixnum: ^1.0.1
|
||||||
meta: ^1.3.0
|
meta: ^1.3.0
|
||||||
http: ^0.13.3
|
http: ^0.13.3
|
||||||
@@ -25,7 +26,7 @@ dependencies:
|
|||||||
flutter_webrtc: 0.9.4
|
flutter_webrtc: 0.9.4
|
||||||
dart_webrtc: 1.0.7
|
dart_webrtc: 1.0.7
|
||||||
device_info_plus: ^3.2.3
|
device_info_plus: ^3.2.3
|
||||||
connectivity_plus: ^2.3.6+1
|
webrtc_interface: 1.0.7
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
|||||||
Reference in New Issue
Block a user