|
1 | 1 | Revision history for the Python package RiveScript. |
2 | 2 |
|
| 3 | +1.12.0 May 10 2016 |
| 4 | + - Add support for nested arrays, like `!array colors = @rgb white black` |
| 5 | + (PR #22) |
| 6 | + |
3 | 7 | 1.10.0 Feb 16 2016 |
4 | | - - Add configurable `unicode_punctuation` attribute to strip out punctuation |
5 | | - when running in UTF-8 mode. |
| 8 | + - Add configurable `unicode_punctuation` attribute to strip out punctuation |
| 9 | + when running in UTF-8 mode. |
6 | 10 |
|
7 | 11 | 1.8.1 Nov 19 2015 |
8 | | - - Add `@` to the list of characters that disqualifies a trigger from being |
9 | | - considered "atomic" |
| 12 | + - Add `@` to the list of characters that disqualifies a trigger from being |
| 13 | + considered "atomic" |
10 | 14 |
|
11 | 15 | 1.8.0 Oct 10 2015 |
12 | | - - New algorithm for handling variable tags (<get>, <set>, <add>, <sub>, |
13 | | - <mult>, <div>, <bot> and <env>) that allows for iterative nesting of |
14 | | - these tags (for example, <set copy=<get orig>> will work now). |
15 | | - - Fix sorting algorithm, so triggers with matching word counts will be |
16 | | - sorted by length descending. |
17 | | - - stream() function can accept a multiline string instead of an array |
18 | | - - Speed optimization by precompiling as many regexps as possible (what was |
19 | | - especially helpful was to precompile substitution and simple trigger |
20 | | - regexps), taking the time-to-reply for the default brain from ~0.19s down |
21 | | - to ~0.04s |
22 | | - - Add support for `! local concat` option to override concatenation mode |
23 | | - (file scoped) |
24 | | - - Fix the regexp used when matching optionals so that the triggers don't match |
25 | | - on inputs where they shouldn't. (RiveScript-JS issue #46) |
| 16 | + - New algorithm for handling variable tags (<get>, <set>, <add>, <sub>, |
| 17 | + <mult>, <div>, <bot> and <env>) that allows for iterative nesting of |
| 18 | + these tags (for example, <set copy=<get orig>> will work now). |
| 19 | + - Fix sorting algorithm, so triggers with matching word counts will be |
| 20 | + sorted by length descending. |
| 21 | + - stream() function can accept a multiline string instead of an array |
| 22 | + - Speed optimization by precompiling as many regexps as possible (what was |
| 23 | + especially helpful was to precompile substitution and simple trigger |
| 24 | + regexps), taking the time-to-reply for the default brain from ~0.19s down |
| 25 | + to ~0.04s |
| 26 | + - Add support for `! local concat` option to override concatenation mode |
| 27 | + (file scoped) |
| 28 | + - Fix the regexp used when matching optionals so that the triggers don't match |
| 29 | + on inputs where they shouldn't. (RiveScript-JS issue #46) |
26 | 30 |
|
27 | 31 | 1.06 Nov 25 2014 |
28 | | - - Change package name from python-rivescript to simply rivescript. |
29 | | - - Change from the GPLv2 license to the MIT license. |
30 | | - - Add compatibility with Python 3. |
31 | | - - Add Unicode support for RiveScript documents. |
32 | | - - Prefer the .rive extension for RS documents over the old .rs extension. |
33 | | - - Track filenames and line numbers when parsing RiveScript documents. |
34 | | - - Add Perl object handler example. |
35 | | - - Add current_user() method accessible from inside an object macro. |
36 | | - - Add unit tests. |
37 | | - - Add deparse() function that dumps the active memory state of the bot. |
38 | | - - Add write() method that writes the active memory state back to disk as a |
39 | | - .rive file (uses deparse()). |
40 | | - - Bugfix with substitution placeholders. |
41 | | - - Bugfix with the <input> and <reply> tags. |
| 32 | + - Change package name from python-rivescript to simply rivescript. |
| 33 | + - Change from the GPLv2 license to the MIT license. |
| 34 | + - Add compatibility with Python 3. |
| 35 | + - Add Unicode support for RiveScript documents. |
| 36 | + - Prefer the .rive extension for RS documents over the old .rs extension. |
| 37 | + - Track filenames and line numbers when parsing RiveScript documents. |
| 38 | + - Add Perl object handler example. |
| 39 | + - Add current_user() method accessible from inside an object macro. |
| 40 | + - Add unit tests. |
| 41 | + - Add deparse() function that dumps the active memory state of the bot. |
| 42 | + - Add write() method that writes the active memory state back to disk as a |
| 43 | + .rive file (uses deparse()). |
| 44 | + - Bugfix with substitution placeholders. |
| 45 | + - Bugfix with the <input> and <reply> tags. |
42 | 46 |
|
43 | 47 | 1.01 May 20 2013 |
44 | | - - Small bugfix in _rot13 that caused crashes under certain circumstances. |
45 | | - - Small bugfix regarding the {weight} tag and atomic triggers. |
46 | | - - Restructure the RiveScript library (move rivescript.py into a package |
47 | | - folder named 'rivescript', separate the interactive mode code into |
48 | | - interactive.py) |
| 48 | + - Small bugfix in _rot13 that caused crashes under certain circumstances. |
| 49 | + - Small bugfix regarding the {weight} tag and atomic triggers. |
| 50 | + - Restructure the RiveScript library (move rivescript.py into a package |
| 51 | + folder named 'rivescript', separate the interactive mode code into |
| 52 | + interactive.py) |
49 | 53 |
|
50 | 54 | 1.00 Apr 22 2012 |
51 | | - - Initial version of rivescript.py |
| 55 | + - Initial version of rivescript.py |
0 commit comments