Skip to content

Releases: joshkil/lexgo

Release 1.1 Adding Italian and Resolving UTF-8 Errors

11 Dec 23:56
Compare
Choose a tag to compare

This dot release adds Italian to the tool and resolve utf-8 errors with the Portuguese dictionary.

Version 1.0 First Full Product Release

11 Dec 20:02
Compare
Choose a tag to compare

This is the first official release of lexgo. After the initial releases, I realized I could get much better performance using the tried and true GNU grep command line tool available ubiquitously on linux systems. The trie structure is removed vastly simplifying the code. The lexgo tool is now more of a wrapper around grep helping language students and teachers explore various language lexicons.

Major Updates

  1. Transitioned the main lexgo command to use grep speeding up performance.
  2. Added a new option to change the language. As of 1.0, english, spanish, french, protuguese, and german are supported.
  3. Added command options and parameter validations.
  4. Added basic tests for validating some of the basic functions.

Known Issues

During testing, I discovered some errors related to text encoding/decoding. I need to find the source of the issue. You can reproduce with command

lexgo -l pt "testar"

Release V0.4

02 Dec 19:57
Compare
Choose a tag to compare

Release v0.4

Bug Fix Release

02 Dec 19:40
Compare
Choose a tag to compare

Again trying to fix the package data files. This time we updated the Manifest.

Bug Fix Release

02 Dec 19:18
Compare
Choose a tag to compare

In this release the storage of required data files and path resolution are corrected.

Initial Release of lexgo Tool

02 Dec 02:12
Compare
Choose a tag to compare

First release of the new lexgo tool. The tool provides an efficient search of an English dictionary for words that match patterns. It makes it easy to search for words that match certain lengths, prefixes, and suffixes.