CHANGELOG | 21 +++++++++++++++++++++ Makefile | 2 +- README.md | 2 +- nnn.1 | 2 +- nnn.c | 2 +- diff --git a/CHANGELOG b/CHANGELOG index c7a0d9a8df86e4f4a59f257fc2bb01c1475e60d8..743b90043d9d106968e61b8b69648cc666800905 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,24 @@ +nnn v1.1 +2017-05-12 + +News +- Introducing nlay - a highly customizable bash script to handle media type +- nnn is on [Homebrew](http://braumeister.org/formula/nnn) now +- RPM packages for CentOS 7 and Fedora 24 + +Modifications +- *Search-as-you-type* support +- Unicode support +- Option `-S` to start in disk usage analyzer mode +- Show media information (using mediainfo) +- Use readline at change directory prompt +- Jump to prev directories using `cd .....` (with `.` as PWD) +- Jump to initial directory using `&` +- Show help, mediainfo and file info in PAGER +- Several optimizations + +------------------------------------------------------------------------------- + nnn v1.0 2017-04-13 diff --git a/Makefile b/Makefile index 457da0c604980141a09fa7878acc4acb7b6f057c..69e19e3e2cbf93e6bb3df562a20420f2adc9dd97 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.0 +VERSION = 1.1 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man diff --git a/README.md b/README.md index 17819ebeab057ab4cd266fa2932564cdaadcafdb..c1a68b4c7d6d386cd15463afeb0783f1e0c7136c 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ - Invoke file path copier (*easy* shell integration) - Quit and change directory (*easy* shell integration) - Open any file in EDITOR (fallback vi) or PAGER (fallback less) - VIM-ish keybinds -- UTF-8 support +- Unicode support ### Performance diff --git a/nnn.1 b/nnn.1 index d6eefba02ee393a77a731417ea3fa983b469ab9b..b51450cd047d1f1315b7b229cfda86c9a7e00a87 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd April 13, 2017 +.Dd May 12, 2017 .Dt NNN 1 .Os .Sh NAME diff --git a/nnn.c b/nnn.c index 76f00ce923db2cdbd5e8ee208ddc2d3815b651d9..5bad5d9040caef7d5fb3a2cd1587d8b1972e0930 100644 --- a/nnn.c +++ b/nnn.c @@ -63,7 +63,7 @@ #define DPRINTF_S(x) #define DPRINTF_P(x) #endif /* DEBUG */ -#define VERSION "v1.0" +#define VERSION "v1.1" #define LEN(x) (sizeof(x) / sizeof(*(x))) #undef MIN #define MIN(x, y) ((x) < (y) ? (x) : (y))