Skip to content

Commit

Permalink
Release 0.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Perondas authored and Perondas committed May 11, 2023
1 parent af1d6e5 commit 3d0c551
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

--------------------------------------------
[0.5.7] - 2023.05.11
* Add sendMessage to Call
* Bump version of intl

[0.5.6] - 2023.04.17

* Reverted version constraint on intl
Expand Down
4 changes: 2 additions & 2 deletions lib/src/rtc_session/dtmf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ class DTMF extends EventManager {
List<String> body = request.body!.split('\n');

if (body.length >= 1) {
if ((body[0]).contains(RegExp(reg_tone))) {
if (body[0].contains(RegExp(reg_tone))) {
_tone = body[0].replaceAll(reg_tone, '\$2');
}
}
if (body.length >= 2) {
if ((body[1]).contains(RegExp(reg_duration))) {
if (body[1].contains(RegExp(reg_duration))) {
_duration =
int.tryParse(body[1].replaceAll(reg_duration, '\$2'), radix: 10);
}
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: sip_ua
version: 0.5.6
version: 0.5.7
description: A SIP UA stack for Flutter/Dart, based on flutter-webrtc, support iOS/Android/Destkop/Web.
homepage: https://github.com/cloudwebrtc/dart-sip-ua
environment:
sdk: ">=2.16.0 <3.0.0"
sdk: ">=2.16.0 <4.0.0"
flutter: ">=2.0.0"

dependencies:
Expand Down

0 comments on commit 3d0c551

Please sign in to comment.