]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v4.6 Absinthe v4.6
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 26 Jul 2022 13:47:58 +0000 (19:17 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 26 Jul 2022 13:58:44 +0000 (19:28 +0530)
.circleci/config.yml
CHANGELOG
misc/haiku/nnn.rdef
nnn.1
src/nnn.c

index 51bc788108250fb4a0580ad083e00f551b060efb..4b6a58ba75f7e8d60367e6640e223567c44ed525 100644 (file)
@@ -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:
index 20b76c41aded1e93699b411c50da1c4f18c70d5b..352cbb106a1c56038cb19e623212c7530d1fb159 100644 (file)
--- 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
 
index a9bc568cab8f621d497a78e38fcf2d1dcabf725c..cf1efd03b9976b94a8917c728d56407fb8cb46eb 100644 (file)
@@ -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 954d036b1dac554a2a2b2ff09a2d2b660cd898c0..f8f4962b651b6607feea17bc386a547e66d7383e 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Apr 26, 2022
+.Dd Jul 26, 2022
 .Dt NNN 1
 .Os
 .Sh NAME
index 5f81239cc14d4fd6cf5cef7b9966baba6e4eb4e5..b81f5044814de5405af28ba60c5c630fbb945f96 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION      "4.5"
+#define VERSION      "4.6"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN