diff --git a/CHANGELOG b/CHANGELOG index 2b76fa06..c532689e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,29 @@ +nnn v2.1 +2018-11-23 + +What's in? +- Inclusion in several distros including Arch Linux official repo +- Multiple contexts (_aka_ tabs _aka_ workspaces) [max 4] +- Copy, move, remove selected files, remove current file +- [Leader key](https://github.com/jarun/nnn#leader-key) (like vim) +- In-built GUI app launcher with up to 2 arguments (key o) +- List copy selection (key y) +- Env var `NNN_NO_AUTOSELECT` to disable dir auto-select +- Key Esc exits prompt, ^L clears prompt +- Program runtime help revamped +- Static code analysis integration +- gcc-8 warnings fixed +- Remapped keys: + - ^W - go to pinned dir + - ^X - delete current entry + - ^Q - quit program +- `nlay` is retired (functionality built into `nnn`) +- `chdir` prompt is retired +- Env var `NNN_NO_X` retired, selection now works out of the box +- Only single-char bookmark keys (to work with Leader key) + +------------------------------------------------------------------------------- + nnn v2.0 2018-10-19 diff --git a/Makefile b/Makefile index 4d705649..b1f1af16 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 2.0 +VERSION = 2.1 PREFIX ?= /usr/local MANPREFIX ?= $(PREFIX)/share/man diff --git a/README.md b/README.md index 7c179b8d..9b1e1a1a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,6 @@ It runs on Linux, OS X, Raspberry Pi, Cygwin, Linux subsystem for Windows and Te *Love smart and efficient utilities? Explore [my repositories](https://github.com/jarun?tab=repositories). Buy me a cup of coffee if they help you.*

- Donate via PayPal!

diff --git a/nnn.1 b/nnn.1 index e3137fec..5775046f 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Oct 19, 2018 +.Dd Nov 23, 2018 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index 37e00116..e8cd7d0d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -156,7 +156,7 @@ disabledbg() #endif /* DEBUGMODE */ /* Macro definitions */ -#define VERSION "2.0" +#define VERSION "2.1" #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn" #define LEN(x) (sizeof(x) / sizeof(*(x)))