summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2021-04-13 11:07:25 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2021-04-13 11:07:25 +0530
commita482e8afe5f399af714e0871e33d42ec5cc9b836 (patch)
tree003c882084cf037995911f888c76f733cf3b0dbd
parent0c55e74fb5a776ffdb65551a94c7a160862b6f4b (diff)
Prepare for release v3.7 Sushiv3.7
-rw-r--r--CHANGELOG25
-rw-r--r--misc/haiku/nnn.rdef4
-rw-r--r--nnn.12
-rw-r--r--src/nnn.c2
4 files changed, 29 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 922a7d30..092efb4e 100644
--- 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
diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef
index a09e78f6..be59f936 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 = 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 826fe943..75d74843 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Mar 16, 2021
+.Dd Apr 13, 2021
.Dt NNN 1
.Os
.Sh NAME
diff --git a/src/nnn.c b/src/nnn.c
index d011b2cb..78964870 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -126,7 +126,7 @@
#endif
/* Macro definitions */
-#define VERSION "3.6"
+#define VERSION "3.7"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
#ifndef NOSSN