Skip to content

Commit 3d0c551

Browse files
PerondasPerondas
Perondas
authored and
Perondas
committed
Release 0.5.7
1 parent af1d6e5 commit 3d0c551

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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

lib/src/rtc_session/dtmf.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: sip_ua
2-
version: 0.5.6
2+
version: 0.5.7
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:
6-
sdk: ">=2.16.0 <3.0.0"
6+
sdk: ">=2.16.0 <4.0.0"
77
flutter: ">=2.0.0"
88

99
dependencies:

0 commit comments

Comments
 (0)