Skip to content

Releases: swarn/fzy-lua

v1.0.3

08 Mar 17:19
e457e9b
Compare
Choose a tag to compare

Correctly generate rockspec for windows

v1.0.2

08 Mar 16:32
Compare
Choose a tag to compare
  • Minor code fixes
  • Build correctly on Windows

v1.0

29 Jan 13:52
Compare
Choose a tag to compare

There are no changes since v0.4!

After two years of no changes, it's fair to call this stable.

v0.4

09 Nov 03:52
Compare
Choose a tag to compare

Add a filter function to compute many matches with one call.

Stable-ish

07 Nov 03:28
Compare
Choose a tag to compare

This release:

  • Fixed an issue that sometimes prevented compilation on windows.

  • Removes the positions_and_score() function. Instead, positions returns the indices and the score, i.e.

    idx, score = positions("ab", "ab") -- {1, 2}, inf
    idx = positions("ab", "ab")        -- {1, 2}
  • Rather than picking the os-dependent path separator (/ or \), I just use both. Windows devs in particular will see both formats.

I don't anticipate any more changes to the API, just additions.