From 0988268a61b4b4f040756821e2992ead7c6a01cf Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 26 Jul 2022 19:17:58 +0530 Subject: [PATCH] Prepare for release v4.6 Absinthe --- .circleci/config.yml | 2 +- CHANGELOG | 28 ++++++++++++++++++++++++++++ misc/haiku/nnn.rdef | 4 ++-- nnn.1 | 2 +- src/nnn.c | 2 +- 5 files changed, 33 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 51bc7881..4b6a58ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -101,7 +101,7 @@ jobs: - run: name: "publish to GitHub" command: | - go get github.com/tcnksm/ghr + go install github.com/tcnksm/ghr@latest ghr -t ${GITHUB_API_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -replace ${CIRCLE_TAG} ./dist/ workflows: diff --git a/CHANGELOG b/CHANGELOG index 20b76c41..352cbb10 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,31 @@ +nnn v4.6 Absinthe +2022-07-26 + +- icon handling overhaul (#1432, #1436) + - better performance, memory usage and reduced binary size +- emoji support for supporting distros and terminals (#1346) +- open the target directory of symlinked bookmarks (#1353) +- enable show hidden when a hidden file is passed as argument +- add Colemak-DH layout keybinds to patch framework (#1421) +- set `bsdtar` as the default archive utility +- support 4 byte unicode keybinds (#1428) +- enable directory auto-enter during filter operation (`-A` to disable) +- enable filter prompt inside the bookmark/plugin dirs +- show volume usage information in help +- add new icon colors for mp4 and flac files +- use `stat -x` for file details on *BSD and macOS (#1389) +- interpret suffix `$nnn` when paging (#1355) +- disable key e (edit file) in explorer mode (#1394) +- fix double order chars on filter case match change +- `.cbcp`: more verbose message on paste without a selection +- plugin `preview-tui`: scale-up kitty previews +- plugin `preview-tui`: account for ueberzug offset +- plugin `preview-tui`: support `SPLIT_SIZE` for preview pane (#1431) +- plugin `autojump`: support z.lua +- new Makefile target `shellcheck` to verify plugins + +------------------------------------------------------------------------------- + nnn v4.5 Cachaça 2022-04-26 diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef index a9bc568c..cf1efd03 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 = 5, + middle = 6, minor = 0, - variety = B_APPV_DEVELOPMENT, + variety = B_APPV_FINAL, internal = 0, short_info = "nnn", diff --git a/nnn.1 b/nnn.1 index 954d036b..f8f4962b 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Apr 26, 2022 +.Dd Jul 26, 2022 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index 5f81239c..b81f5044 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -135,7 +135,7 @@ #endif /* Macro definitions */ -#define VERSION "4.5" +#define VERSION "4.6" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef NOSSN