summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-16 02:39:37 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-16 02:39:37 +0900
commit4bece042077dbf2a37e4f6a9e03e34e2cd20014c (patch)
tree6d0a3b755e3205ac96652fef58aef69fee6547f7
parentede7bfb90105b7df5bf115a837e307ac3f2540fe (diff)
0.16.0
-rw-r--r--CHANGELOG.md3
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
4 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d5802c8a..d46df325 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,8 @@ CHANGELOG
0.16.0
------
-- Added `--height HEIGHT[%]` option
+- *Added `--height HEIGHT[%]` option*
+ - fzf can now display finder without occupying the full screen
- Preview window will truncate long lines by default. Line wrap can be enabled
by `:wrap` flag in `--preview-window`.
- Latin script letters will be normalized before matching so that it's easier
diff --git a/install b/install
index 7a2481fa..3c338fb7 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.16.0-alpha
+version=0.16.0
auto_completion=
key_bindings=
update_config=2
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index accf3f29..a7abf84b 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -147,7 +147,7 @@ Label characters for \fBjump\fR and \fBjump-accept\fR
.TP
.BI "--height=" "HEIGHT[%]"
Display fzf window below the cursor with the given height instead of using
-fullscreen.
+the full screen.
.TP
.BI "--min-height=" "HEIGHT"
Minimum height when \fB--height\fR is given in percent (default: 10).
diff --git a/src/constants.go b/src/constants.go
index 9640dbe7..1abc9b96 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.16.0-alpha"
+ version = "0.16.0"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond