Upcoming release - please test

Hi,

LanguageTool 3.1 will be released in one week, please help test the current state at http://languagetool.org and report your issues here or at github.

Regards
Daniel

Hi, have been testing this for some time.
The only glitch found so far was with setting the NGRAM folder via the LT GUI which required a small change to the getNgramPanel function.

Had to changeā€¦

LuceneLanguageModel.validateDirectory(newDir);
[/quote]
to

File CheckDir = new File(newDir.getAbsolutePath(),config.getLanguage().getShortName());
LuceneLanguageModel.validateDirectory(CheckDir);
[/quote]

Thanks, should be fixed now.