]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v4.7 Cuba libre v4.7
authorArun Prakash Jana <engineerarun@gmail.com>
Thu, 24 Nov 2022 05:28:21 +0000 (10:58 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Thu, 24 Nov 2022 05:28:21 +0000 (10:58 +0530)
.github/workflows/ci.yml
CHANGELOG
misc/haiku/nnn.rdef
nnn.1
src/nnn.c

index 71a71d7849a3a039f50f97e3ac32cef2703dd5ae..667c40aa3a9769f5c021b3cef88299abfee85360 100644 (file)
@@ -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"
index 352cbb106a1c56038cb19e623212c7530d1fb159..7e24446224abf718c0ae6ee2b1691a612a16a439 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,25 @@
+nnn v4.7 Cuba libre
+2022-11-24
+
+
+- fix <kbd>^N</kbd> 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 <kbd>J</kbd> 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
 
index 6522584f20f75b82d6aef1863a55f750dcac2ed0..4eb9a11c08694773c6278bef935b4ba7e4bbdf7f 100644 (file)
@@ -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 7b4edbb93c3b288f49717d61d1971334c4632ea4..734ce22e1e4feaa06fa938978c30f150626e1a60 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Jul 26, 2022
+.Dd Nov 24, 2022
 .Dt NNN 1
 .Os
 .Sh NAME
index e216b68600d00a5b214561ca706aee407a6fc2c9..9b0c502da5b287afe7c5b6021509b1ff2201541a 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION      "4.6"
+#define VERSION      "4.7"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN