]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.4 v2.4
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 18 Mar 2019 21:44:35 +0000 (03:14 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 18 Mar 2019 21:47:22 +0000 (03:17 +0530)
CHANGELOG
Makefile
nnn.1
src/nnn.c

index 698bfad8b05eeabee182fb8d3ce7bd3f68a423c7..490fdd575c8fc1652722f4be9ff6bde307444310 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,26 @@
+nnn v2.4
+2019-03-19
+
+- FreeDesktop.org compliant trashing
+- mark selected entries with `+`
+- _wild_ mode (option `-w`, key <kbd>^W</kbd>) for _nav-as-you-type_
+- POSIX-compliant GUI app launcher with drop-down menu (key <kbd>=</kbd>)
+- new scripts:
+  - upload image to imgur
+  - send selection to Android using kdeconnect-cli
+- show permissions in detail mode
+- cp, mv progress bar for Linux (needs advcpmv) [BSD, macOS shows on <kbd>^T</kbd>]
+- make libreadline an optional dep (reduces memory usage)
+- minimize the number of redraws
+- handle screen resize gracefully
+- option `-d` to show hidden files (`NNN_SHOW_HIDDEN` is removed)
+- additional key <kbd>K</kbd> to toggle selection
+- change visit start dir key to <kbd>@</kbd>
+- option `-C` to disable colors removed
+- per-context initial directory replaced by program start dir
+- marker msg when spawning new shell removed
+- rename debug file to `nnndbg`
+
 nnn v2.3
 2019-02-19
 
index 4e35c6a85ff76e92631d7fc53547e397cf082bc5..fce5f0651a610a02692fc9026fad2c1d8f02d66d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.3
+VERSION = 2.4
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 6ec3832320df55d1ce3f68e0e9d6bbd1910e1d16..bda63a7d219782df5a4ee8dc15572d3f69447ad3 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Feb 19, 2019
+.Dd Mar 19, 2019
 .Dt NNN 1
 .Os
 .Sh NAME
index ab4c9043c38c43a324e7eaf86420c10cb245ccd6..8c400428d5d8b868970f99964e0bbd7868a1838c 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -98,7 +98,7 @@
 #include "dbg.h"
 
 /* Macro definitions */
-#define VERSION "2.3"
+#define VERSION "2.4"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef S_BLKSIZE