1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
Revision history for Perl extension Text::Aspell.
## $Id: Changes,v 1.4 2002/08/29 20:28:00 moseley Exp $ ##
0.04 Sat Nov 1 22:10:03 UTC 2003
- Updated README for Windows instructions
0.03 Sun Aug 3 00:45:32 UTC 2003
- Fixed a bug reported in Debian bug 203467
An invalid config setting (such as Lang = "xx") was
causing a segfault.
Was freeing the config option between creating the speller
and checking for errors. The free was clearing the error status.
- Fixed Debian bug 203516
Was not correctly extending arg stack when pusing suggesions onto
an array.
- Closed Debian bug 203517
User was trying to modify the config settings (specifically the
"lang" setting) after creating a speller object. That doesn't
work because creating a speller object is what maps the config
options to a given dictionary file.
Documentation updated to clear up this point.
0.02 Sat Aug 31 14:58:31 UTC 2002
- Added new method:
@dicts = $speller->dictionary_info;
returns hash ref instead of a : joined string
- Added new method:
@option_list = $speller->get_option_as_list( $option_name );
returns the option setting as a list (since some options are lists)
- Added new method:
$options = $speller->fetch_option_keys;
returns the available config options and their defaults
- Removed option_list array.
0.01 Thu Aug 29 19:49:51 UTC 2002
- Updated and renamed from Text::Pspell to use GNU Aspell 0.50.
Update to GNU Aspell provided by T.J. Mather, Aug 24, 2002.
- Updated config options displayed in print_config() method.
- Added list_dictionaries() method to list available dictionaries
and added test.
|