]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v3.7 Sushi v3.7
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 13 Apr 2021 05:37:25 +0000 (11:07 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 13 Apr 2021 05:37:25 +0000 (11:07 +0530)
CHANGELOG
misc/haiku/nnn.rdef
nnn.1
src/nnn.c

index 922a7d3017bcd7fdc9cf08f3506c0db4b48e6726..092efb4e65ebc20755dd75599f34502497f31b66 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,28 @@
+nnn v3.7 Sushi
+2021-04-13
+
+- allow plugins to clear selection (#884, #889, #917)
+- do not clear selection on hovered file deletion
+- resurrect `'c'urrent/'s'el` prompt and option `-u` (#889)
+- show only file name in reverse in detail mode
+- more file/mime types supported in `preview-tui-ext`
+- plugin `mtpmount` - (un)mount MTP devices
+- plugin `cleanfilename` - more shell-friendly file names
+- plugin `rsynccp` - copy-paste with visual progress
+- replace `$HOME` by `~` in address bar
+- show current path in terminal title (#911)
+- total links and inode number of hardlink in statusbar
+- fix symlink to text file not opening in CLI editor (#890)
+- fix symlink size shown as 0B in statusbar (#888)
+- show symlink target in statusbar (#893)
+- show correct disk free/total on macOS (#888)
+- fix directory disk usage showing as 0 on macOS (#941)
+- fix name col len with `-C` and icons compiled-in (#936)
+- refactor printing entries in light/detail modes (#934)
+- make option `O_CKBOARD` for checker board as indicator
+
+-------------------------------------------------------------------------------
+
 nnn v3.6 Nina
 2021-03-16
 
index a09e78f6bba9d1f063741e144f1a0161f0e7dc3a..be59f936a60b8fc4936ad9fcb52ec5be9ef1db25 100644 (file)
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
 
 resource app_version {
        major  = 3,
-       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 826fe943056d08a3241720b3f62905b7160cf0a7..75d748430d745573e8f8763c7a37111af3424cbc 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Mar 16, 2021
+.Dd Apr 13, 2021
 .Dt NNN 1
 .Os
 .Sh NAME
index d011b2cb3375753c3af5b9117d0335548db3cb77..789648709bd1edc02057e833c77e3e48bb33a009 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION "3.6"
+#define VERSION "3.7"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN