File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
--------------------------------------------
4
4
5
+ [ 1.5.3] - 2025-03-24
6
+
7
+ * add getBufferedAmount for DC.
8
+
5
9
[ 1.5.2+hotfix.1] - 2025-02-23.
6
10
7
11
* remove platform_detect.
Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ class RTCDataChannelWeb extends RTCDataChannel {
48
48
@override
49
49
int ? get bufferedAmount => _jsDc.bufferedAmount;
50
50
51
+ @override
52
+ Future <int > getBufferedAmount () async {
53
+ return _jsDc.bufferedAmount;
54
+ }
55
+
51
56
@override
52
57
set bufferedAmountLowThreshold (int ? bufferedAmountLowThreshold) {
53
58
_jsDc.bufferedAmountLowThreshold = bufferedAmountLowThreshold ?? 0 ;
Original file line number Diff line number Diff line change 1
1
name : dart_webrtc
2
2
description : Use the dart/js library to re-wrap the webrtc js interface of the browser, to adapted common browsers.
3
- version : 1.5.2+hotfix.1
3
+ version : 1.5.3
4
4
homepage : https://github.com/flutter-webrtc/dart-webrtc
5
5
6
6
environment :
@@ -13,7 +13,7 @@ dependencies:
13
13
meta : ^1.8.0
14
14
synchronized : ^3.0.0+3
15
15
web : ^1.0.0
16
- webrtc_interface : ^1.2.1
16
+ webrtc_interface : ^1.2.2+hotfix. 1
17
17
18
18
dev_dependencies :
19
19
build_runner : ^2.3.3
You can’t perform that action at this time.
0 commit comments