File tree Expand file tree Collapse file tree 3 files changed +18
-8
lines changed Expand file tree Collapse file tree 3 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change 11name : sip_ua
2- version : 0.3.1
2+ version : 0.3.2
33description : A SIP UA stack for Flutter/Dart, based on flutter-webrtc, support iOS/Android/Destkop/Web.
44homepage : https://github.com/cloudwebrtc/dart-sip-ua
55environment :
@@ -9,14 +9,15 @@ environment:
99dependencies :
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
2122dev_dependencies :
2223 test : ^1.6.7
You can’t perform that action at this time.
0 commit comments