Skip to content

Commit

Permalink
Released as version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zaf committed Dec 13, 2011
1 parent 7ae7113 commit c459cc0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
2011-11-28 Lefteris Zafiris <zaf.000@gmail.com> - 0.1
Initial release 0.1
2011-12-13 Lefteris Zafiris <zaf.000@gmail.com> - 0.3
Fixed compatibility with asterisk 1.4 and older.
Changed the arguments of tempfile() for compatibility
with older perl versions.
Encode ampersands and plus sign to ascii values.
Added check for channel status before answering.
When 'intkey' is set the script waits for user input.

2011-12-01 Lefteris Zafiris <zaf.000@gmail.com> - 0.2
Working cache mechanism. Input sanitisation
and removal of dangerous characters. Better
and removal of dangerous characters. Better
error handling. Support for sampling rates
other than 8KHz. Cleanup mechanism for
temporary files.

2011-11-28 Lefteris Zafiris <zaf.000@gmail.com> - 0.1
Initial release 0.1
2 changes: 1 addition & 1 deletion googletts.agi
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ if ($AGI{arg_2}) {
}

# Setting interrupt keys #
if ($AGI{arg_3}) {
if ($AGI{arg_3} ne "") {
$intkey = "0123456789#*" if ($AGI{arg_3} eq "any");
$intkey = $AGI{arg_3} if ($AGI{arg_3} =~ /^[0-9*#]+$/);
}
Expand Down

0 comments on commit c459cc0

Please sign in to comment.