From bdb1a643038bae0c3467a701a33b8ba5fbf07841 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 26 Aug 2024 18:47:23 +0530 Subject: [PATCH] Prepare for release v5.0 Daiquiri --- CHANGELOG | 29 +++++++++++++++++++++++++++++ misc/haiku/nnn.rdef | 6 +++--- src/nnn.c | 2 +- 3 files changed, 33 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9b19944b2..76b4c9516 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,32 @@ +nnn v5.0 Daiquiri +2024-08-26 + +- show relative line numbering when jumping (#1808) +- option `-N` to use native prompt when compiled with libreadline +- rm improvements + - log removed filename + - cancel on 'n' or 'N' + - show name of the hovered file to be removed + - show number of selected files to be removed +- new keybind X to force `rm -rf` always (#1811) +- fix sort order getting changed on context switch (#1757) +- fix current selection on new file creation, if symlinks exist (#1767) +- fix filter toggle with mouse click on last 2 rows (#1765) +- fix file creation (#1864) +- when handling bookmark, use readlink, not realpath +- set `$PWD` on directory switch +- add option `-0` to null-separate file paths in picker mode +- quitcd.nu (for nushell) now supports modular import (#1806) +- add _command as plugin_ example to cd to user input directory +- `cbcopy-mac`, `cbpaste-mac`: plugins for integration with macOS clipboard +- `fzhist` plugin: add support for zsh history +- `preview-tui` plugin: support eza as replacement for exa, multiple fixes +- `preview-tui` plugin: add full svg support (#1865) +- `preview-tabbed`: show (n)sxiv in thumbnail mode inside "Pictures" directory +- mpv sixel/kitty support for preview (#1590) + +------------------------------------------------------------------------------- + nnn v4.9 Elixir 2023-08-27 diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef index ada8c5296..198d43024 100644 --- a/misc/haiku/nnn.rdef +++ b/misc/haiku/nnn.rdef @@ -8,11 +8,11 @@ resource app_signature "application/x-vnd.Jarun-nnn"; resource app_version { - major = 4, - middle = 9, + major = 5, + middle = 0, minor = 0, - variety = B_APPV_DEVELOPMENT, + variety = B_APPV_FINAL, internal = 0, short_info = "nnn", diff --git a/src/nnn.c b/src/nnn.c index 09ae31bd7..1208288b6 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -148,7 +148,7 @@ #endif /* Macro definitions */ -#define VERSION "4.9" +#define VERSION "5.0" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef NOSSN