Skip to content

Commit

Permalink
Fix Channel recording would not stop. Fixes #60
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele77 committed Feb 21, 2022
1 parent 5af7981 commit e72acb0
Show file tree
Hide file tree
Showing 8 changed files with 412 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

cmake_minimum_required(VERSION 3.8)

project(aricpp VERSION 1.1.1 LANGUAGES CXX)
project(aricpp VERSION 1.1.2 LANGUAGES CXX)

include(GNUInstallDirs)

Expand Down
6 changes: 4 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

## Unversioned
## Version 1.1.2 - 2022-02-21

- Fix passing two times the playback id in Channel::Play
- Fix Channel recording would not stop. Fixes [#47](https://github.com/daniele77/aricpp/issues/60)
- Fix passing two times the playback id in Channel::Play
- Add digitsequence new example

## Version 1.1.1 - 2021-05-18

Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ set(Boost_NO_BOOST_CMAKE ON)
add_definitions(-DBOOST_ALL_DYN_LINK -DBOOST_UUID_FORCE_AUTO_LINK) # for windows: play_and_record uses boost uuid
find_package(Boost 1.66 REQUIRED COMPONENTS program_options REQUIRED)

set(SOURCES low_level_dial high_level_dial chat query holding_bridge play_and_record auto_attendant)
set(SOURCES low_level_dial high_level_dial chat query holding_bridge play_and_record digitsequence auto_attendant)

foreach(example ${SOURCES})
add_executable(${example} ${example}.cpp)
Expand Down
2 changes: 1 addition & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
override CXXFLAGS += -O3 -Werror -Wall -Wextra -Wpedantic -std=c++1y -I..
override LDLIBS += -lboost_program_options -lboost_system -lpthread

EXAMPLES := low_level_dial high_level_dial chat query holding_bridge play_and_record auto_attendant
EXAMPLES := low_level_dial high_level_dial chat query holding_bridge play_and_record digitsequence auto_attendant

.PHONY: clean all

Expand Down
Loading

0 comments on commit e72acb0

Please sign in to comment.