File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33--------------------------------------------
4+ [ 0.5.7] - 2023.05.11
5+ * Add sendMessage to Call
6+ * Bump version of intl
7+
48[ 0.5.6] - 2023.04.17
59
610* Reverted version constraint on intl
Original file line number Diff line number Diff line change @@ -123,12 +123,12 @@ class DTMF extends EventManager {
123123 List <String > body = request.body! .split ('\n ' );
124124
125125 if (body.length >= 1 ) {
126- if (( body[0 ]) .contains (RegExp (reg_tone))) {
126+ if (body[0 ].contains (RegExp (reg_tone))) {
127127 _tone = body[0 ].replaceAll (reg_tone, '\$ 2' );
128128 }
129129 }
130130 if (body.length >= 2 ) {
131- if (( body[1 ]) .contains (RegExp (reg_duration))) {
131+ if (body[1 ].contains (RegExp (reg_duration))) {
132132 _duration =
133133 int .tryParse (body[1 ].replaceAll (reg_duration, '\$ 2' ), radix: 10 );
134134 }
Original file line number Diff line number Diff line change 11name : sip_ua
2- version : 0.5.6
2+ version : 0.5.7
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 :
6- sdk : " >=2.16.0 <3 .0.0"
6+ sdk : " >=2.16.0 <4 .0.0"
77 flutter : " >=2.0.0"
88
99dependencies :
You can’t perform that action at this time.
0 commit comments