summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2022-07-26 19:17:58 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2022-07-26 19:28:44 +0530
commit0988268a61b4b4f040756821e2992ead7c6a01cf (patch)
tree01b49b07fb47b429c234a5116655d7ebcd20b1e4
parent98287158aa8ea4a96f2d930823c3b92f20422bb7 (diff)
Prepare for release v4.6 Absinthev4.6
-rw-r--r--.circleci/config.yml2
-rw-r--r--CHANGELOG28
-rw-r--r--misc/haiku/nnn.rdef4
-rw-r--r--nnn.12
-rw-r--r--src/nnn.c2
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 <kbd>e</kbd> (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