CHANGELOG | 32 ++++++++++++++++++++++++++++++++ misc/haiku/nnn.rdef | 4 ++-- nnn.1 | 2 +- src/nnn.c | 2 +- diff --git a/CHANGELOG b/CHANGELOG index 424d29f87c8c3ddaa352096acffd3034d55b6eca..e4225f3b1ba38e8a02465c18864c3b54d32400aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,35 @@ +nnn v4.3 Martini +2021-09-29 + +- cool ASCII art logo in the help screen +- add `bookmarks` directory for flexible symlinked bookmarks +- new key B to add a symlinked bookmark for current dir +- special variables `$dN`, `$fN` available for plugins/prompt/shell to access + dir/hovered file in each conext +- config `NNN_ORDER` to set directory-specific ordering +- show/hide hidden files as per context state in plugin based batch rename +- retain search filter history for plugin `finder` +- sync multiple instances of `nnn` after operation on selection +- signal CWD change to terminal via OSC-7 (#1147) +- save complete per-context filter when saving sessions +- disable symlink resolution for paths in `NNN_BMS` and arg `PATH` +- do not end selection mode on running plugins/prompt/shell +- plugin `bookmarks` replaced by symlinked bookmarks support +- list open locations in active contexts in help page +- make option `O_MATCHFLTR` to discard filter key if no match +- configurable `NNN_TMPFILE` to _cd on quit_ +- disable auto marking directories (use -) +- picker mode improvements + - open tty for input if `STDIN` is non-tty + - truncate output file before writing + - do not double select a file on Enter +- legacy macOS (< 10.12.0) support +- no redraw during du calculation, show processed dir name +- plugin `xdgdefault`: add dmenu support +- user patch `restorepreview`: close/restore `preview-tui` for internal edits + +------------------------------------------------------------------------------- + nnn v4.2 Mojito 2021-07-21 diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef index 31fda6a486403de4e36d6ce8ce6fe1564ac2a367..daac5d18eba77c5557caea83f7712ef8e54fd406 100644 --- a/misc/haiku/nnn.rdef +++ b/misc/haiku/nnn.rdef @@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn"; resource app_version { major = 4, - middle = 2, + middle = 3, minor = 0, - variety = B_APPV_DEVELOPMENT, + variety = B_APPV_FINAL, internal = 0, short_info = "nnn", diff --git a/nnn.1 b/nnn.1 index a2989027138b5509e682d2075a0cc76db7f72fcd..5575ed77fb57bf1a10c25010407deb0d3c2228b8 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Jul 21, 2021 +.Dd Sep 29, 2021 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index 88263beb995d74d7ca458bf387ee84d56b370fe8..e6665e77a3fe1386e42b68df07bca45aab0570de 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -134,7 +134,7 @@ #include "qsort.h" #endif /* Macro definitions */ -#define VERSION "4.2" +#define VERSION "4.3" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef NOSSN