Skip to content

Commit 4f63f28

Browse files
committed
2 parents 267ca2d + b1417f4 commit 4f63f28

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

33
--------------------------------------------
4+
[0.3.2] - 2020.11.11
5+
6+
* Added dtmf options to Call (#154)
7+
* Fix bug for digest authentication.
8+
* Fix rport parse (#144).
9+
* Support RFC2833.
10+
* Upgrade flutter_webrtc to 0.4.1.
11+
* Fix incorrect register assert (#139).
12+
413
[0.3.1] - 2020.10.18
514

615
* fix rport in Via parser.

lib/src/sip_ua_helper.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,9 @@ class Call {
421421
_session.unmute(audio, video);
422422
}
423423

424-
void sendDTMF(String tones) {
424+
void sendDTMF(String tones, [Map<String, dynamic> options]) {
425425
assert(_session != null, 'ERROR(sendDTMF): rtc session is invalid!');
426-
_session.sendDTMF(tones);
426+
_session.sendDTMF(tones, options);
427427
}
428428

429429
String get remote_display_name {

pubspec.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sip_ua
2-
version: 0.3.1
2+
version: 0.3.2
33
description: A SIP UA stack for Flutter/Dart, based on flutter-webrtc, support iOS/Android/Destkop/Web.
44
homepage: https://github.com/cloudwebrtc/dart-sip-ua
55
environment:
@@ -9,14 +9,15 @@ environment:
99
dependencies:
1010
crypto: ^2.1.2
1111
flutter_webrtc: ^0.5.7
12+
intl: ^0.16.0
13+
logger: ^0.9.0
1214
parser_error: ^0.1.1
13-
sdp_transform: ^0.2.0
14-
uuid: ^2.0.2
15+
path: ^1.6.4
1516
random_string: ^2.0.0
16-
logger: ^0.9.0
17-
intl: ^0.16.0
1817
recase: ^3.0.0
19-
path: ^1.6.4
18+
sdp_transform: ^0.2.0
19+
uuid: ^2.0.2
20+
2021

2122
dev_dependencies:
2223
test: ^1.6.7

0 commit comments

Comments
 (0)