From 7330e6642b7a556d815b008729c55ec044aac79b Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 24 Nov 2022 10:58:21 +0530 Subject: [PATCH] Prepare for release v4.7 Cuba libre --- .github/workflows/ci.yml | 1 + CHANGELOG | 22 ++++++++++++++++++++++ misc/haiku/nnn.rdef | 4 ++-- nnn.1 | 2 +- src/nnn.c | 2 +- 5 files changed, 27 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71a71d78..667c40aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,7 @@ jobs: env: CC: clang run: | + rm '/usr/local/bin/2to3-3.11' brew update brew install llvm export PATH="/usr/local/opt/llvm/bin:$PATH" diff --git a/CHANGELOG b/CHANGELOG index 352cbb10..7e244462 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,25 @@ +nnn v4.7 Cuba libre +2022-11-24 + + +- fix ^N not working sometimes (#1449) +- fix file remove confirmation prompt +- bring back `atool` as the default archive handler +- add option `-B` to use `bsdtar` as the archive utility +- find and list mode improvements + ntinue even if max paths/data size limit is exceeded + eed improvements + pport listing maximum 16K paths of 64 MiB of data +- key J to jump to an entry or relative offset from current entry +- prefill the hard link creation prompt when there's a single target (#1507) +- documented workaround for docker container crash (#1407, #1476) +- plugin `imgview`: handle arguments as strings (#1509) +- plugin `wallpaper`: support Wayland (#1512) +- plugin `upload`: handle selection using `ffsend` (#1523) +- add Rust icons (#1502) + +------------------------------------------------------------------------------- + nnn v4.6 Absinthe 2022-07-26 diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef index 6522584f..4eb9a11c 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 = 6, + middle = 7, minor = 0, - variety = B_APPV_DEVELOPMENT, + variety = B_APPV_FINAL, internal = 0, short_info = "nnn", diff --git a/nnn.1 b/nnn.1 index 7b4edbb9..734ce22e 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Jul 26, 2022 +.Dd Nov 24, 2022 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index e216b686..9b0c502d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -137,7 +137,7 @@ #endif /* Macro definitions */ -#define VERSION "4.6" +#define VERSION "4.7" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef NOSSN