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 1
1
# Changelog
2
2
3
3
--------------------------------------------
4
+ [ 0.5.7] - 2023.05.11
5
+ * Add sendMessage to Call
6
+ * Bump version of intl
7
+
4
8
[ 0.5.6] - 2023.04.17
5
9
6
10
* Reverted version constraint on intl
Original file line number Diff line number Diff line change @@ -123,12 +123,12 @@ class DTMF extends EventManager {
123
123
List <String > body = request.body! .split ('\n ' );
124
124
125
125
if (body.length >= 1 ) {
126
- if (( body[0 ]) .contains (RegExp (reg_tone))) {
126
+ if (body[0 ].contains (RegExp (reg_tone))) {
127
127
_tone = body[0 ].replaceAll (reg_tone, '\$ 2' );
128
128
}
129
129
}
130
130
if (body.length >= 2 ) {
131
- if (( body[1 ]) .contains (RegExp (reg_duration))) {
131
+ if (body[1 ].contains (RegExp (reg_duration))) {
132
132
_duration =
133
133
int .tryParse (body[1 ].replaceAll (reg_duration, '\$ 2' ), radix: 10 );
134
134
}
Original file line number Diff line number Diff line change 1
1
name : sip_ua
2
- version : 0.5.6
2
+ version : 0.5.7
3
3
description : A SIP UA stack for Flutter/Dart, based on flutter-webrtc, support iOS/Android/Destkop/Web.
4
4
homepage : https://github.com/cloudwebrtc/dart-sip-ua
5
5
environment :
6
- sdk : " >=2.16.0 <3 .0.0"
6
+ sdk : " >=2.16.0 <4 .0.0"
7
7
flutter : " >=2.0.0"
8
8
9
9
dependencies :
You can’t perform that action at this time.
0 commit comments