Skip to content

Commit 7c01c11

Browse files
authored
release: 1.1.1-hotfix. (#160)
* release: 1.1.1-hotfix. * fix analyze for flutter 3.3.0
1 parent 82e8a9e commit 7c01c11

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.1.1-hotfix
4+
5+
* Fix compilation error caused by webrtc-interface version jumping.
6+
37
## 1.1.1
48

59
* Add hardware api for camera and audio input/output selection.

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ packages:
281281
path: ".."
282282
relative: true
283283
source: path
284-
version: "1.1.1"
284+
version: "1.1.1-hotifx"
285285
logging:
286286
dependency: "direct main"
287287
description:

lib/src/managers/event.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ abstract class EventsListenable<T> extends Disposable {
134134
_listeners.add(listener);
135135

136136
// make a cancel func to cancel listening and remove from list in 1 call
137-
_cancelFunc() async {
137+
cancelFunc() async {
138138
await listener.cancel();
139139
_listeners.remove(listener);
140140
logger.fine('${objectId} event was cancelled by func');
141141
}
142142

143-
return _cancelFunc;
143+
return cancelFunc;
144144
}
145145

146146
// convenience method to listen & filter a specific event type

pubspec.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: livekit_client
22
description: Flutter Client SDK for LiveKit.
33
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
4-
version: 1.1.1
4+
version: 1.1.1-hotfix
55
homepage: https://livekit.io
66

77
environment:
@@ -15,6 +15,7 @@ dependencies:
1515
sdk: flutter
1616
async: ^2.6.1
1717
collection: ^1.15.0
18+
connectivity_plus: ^2.3.6+1
1819
fixnum: ^1.0.1
1920
meta: ^1.3.0
2021
http: ^0.13.3
@@ -25,7 +26,7 @@ dependencies:
2526
flutter_webrtc: 0.9.4
2627
dart_webrtc: 1.0.7
2728
device_info_plus: ^3.2.3
28-
connectivity_plus: ^2.3.6+1
29+
webrtc_interface: 1.0.7
2930

3031
dev_dependencies:
3132
flutter_test:

0 commit comments

Comments
 (0)