diff --git a/CHANGELOG b/CHANGELOG index 698bfad8b..490fdd575 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,26 @@ +nnn v2.4 +2019-03-19 + +- FreeDesktop.org compliant trashing +- mark selected entries with `+` +- _wild_ mode (option `-w`, key ^W) for _nav-as-you-type_ +- POSIX-compliant GUI app launcher with drop-down menu (key =) +- new scripts: + - upload image to imgur + - send selection to Android using kdeconnect-cli +- show permissions in detail mode +- cp, mv progress bar for Linux (needs advcpmv) [BSD, macOS shows on ^T] +- make libreadline an optional dep (reduces memory usage) +- minimize the number of redraws +- handle screen resize gracefully +- option `-d` to show hidden files (`NNN_SHOW_HIDDEN` is removed) +- additional key K to toggle selection +- change visit start dir key to @ +- option `-C` to disable colors removed +- per-context initial directory replaced by program start dir +- marker msg when spawning new shell removed +- rename debug file to `nnndbg` + nnn v2.3 2019-02-19 diff --git a/Makefile b/Makefile index 4e35c6a85..fce5f0651 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 2.3 +VERSION = 2.4 PREFIX ?= /usr/local MANPREFIX ?= $(PREFIX)/share/man diff --git a/nnn.1 b/nnn.1 index 6ec383232..bda63a7d2 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Feb 19, 2019 +.Dd Mar 19, 2019 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index ab4c9043c..8c400428d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -98,7 +98,7 @@ #include "dbg.h" /* Macro definitions */ -#define VERSION "2.3" +#define VERSION "2.4" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef S_BLKSIZE