Skip to content

Commit

Permalink
release: version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
natecraddock committed Feb 21, 2022
1 parent d32e374 commit 5c1dcc9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# master

# 0.3

This release improves the ranking algorithm, adds two new commandline options,
fixes a few bugs, and optimizes the TUI drawing code. Shell completion scripts
are now provided for bash, zsh, and fish.

* **feat**: prioritize matches on beginning of words

Matches that begin at the start of a word will be ranked higher than matches
in the middle of a word.

* **feat**: add keep order option (`-k` `--keep-order`)

Adds an option to skip sorting of items and preserve the order of lines read
Expand All @@ -21,14 +30,14 @@

* **fix**: query mangling when moving the cursor left or right

* **fix**: off-by-one scolling error at bottom of terminals
* **fix**: off-by-one scrolling error at bottom of terminals

When zf was run at the bottom of a terminal the scrolling would remove the
previous prompt.

* **fix**: don't require pressing esc three times to cancel

# v0.2
# 0.2

This release fixes a few minor bugs, optimizes drawing the terminal user
interface, and introduces a number of new features:
Expand Down Expand Up @@ -60,6 +69,6 @@ interface, and introduces a number of new features:
Allows controlling the number of displayed result lines in the terminal user
interface.

# v0.0.1
# 0.0.1

Initial release
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ArrayList = std.ArrayList;
const filter = @import("filter.zig");
const ui = @import("ui.zig");

const version = "0.3-dev";
const version = "0.3";
const version_str = std.fmt.comptimePrint("zf {s} Nathan Craddock", .{version});

const help =
Expand Down

0 comments on commit 5c1dcc9

Please sign in to comment.