Skip to content

Commit 3a12556

Browse files
committed
release: 1.5.3.
1 parent 9994968 commit 3a12556

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
--------------------------------------------
44

5+
[1.5.3] - 2025-03-24
6+
7+
* add getBufferedAmount for DC.
8+
59
[1.5.2+hotfix.1] - 2025-02-23.
610

711
* remove platform_detect.

lib/src/rtc_data_channel_impl.dart

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ class RTCDataChannelWeb extends RTCDataChannel {
4848
@override
4949
int? get bufferedAmount => _jsDc.bufferedAmount;
5050

51+
@override
52+
Future<int> getBufferedAmount() async {
53+
return _jsDc.bufferedAmount;
54+
}
55+
5156
@override
5257
set bufferedAmountLowThreshold(int? bufferedAmountLowThreshold) {
5358
_jsDc.bufferedAmountLowThreshold = bufferedAmountLowThreshold ?? 0;

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_webrtc
22
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
44
homepage: https://github.com/flutter-webrtc/dart-webrtc
55

66
environment:
@@ -13,7 +13,7 @@ dependencies:
1313
meta: ^1.8.0
1414
synchronized: ^3.0.0+3
1515
web: ^1.0.0
16-
webrtc_interface: ^1.2.1
16+
webrtc_interface: ^1.2.2+hotfix.1
1717

1818
dev_dependencies:
1919
build_runner: ^2.3.3

0 commit comments

Comments
 (0)