]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.0
authorArun Prakash Jana <engineerarun@gmail.com>
Fri, 19 Oct 2018 09:54:15 +0000 (15:24 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Fri, 19 Oct 2018 09:54:15 +0000 (15:24 +0530)
CHANGELOG
Makefile
nnn.1
nnn.c

index b3c14a19ce8df951bdb1c9e32ede3350ac6c750b..f4ef4a1be3c600ea80f80c26b7dc1c342b989361 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+nnn v1.9
+2018-10-19
+
+What's in?
+- Mode to show apparent size (key `S`)
+- Script to integrate `patool` instead of `atool`
+- Support `bashlock` (OS X) and `lock` (BSD) as terminal locker
+- Symbol `@/` for symlink to dir
+- Dependency on `libreadline` removed
+
+-------------------------------------------------------------------------------
+
 nnn v1.9
 2018-08-10
 
index 598fae2897092e9dd6f1b0dda83284d6eb42d91c..30b76acab408f43647be4bb34d6d9af14613637c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.9
+VERSION = 2.0
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 8dacf19d8050b464b3a174917f2bf42867824ac2..c99c686e3553904a711b38c3a607653747fd1136 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Aug 10, 2018
+.Dd Oct 19, 2018
 .Dt NNN 1
 .Os
 .Sh NAME
@@ -283,7 +283,7 @@ for filenames having quote(s) in them.
     export NNN_SHOW_HIDDEN=1
 .Ed
 .Sh KNOWN ISSUES
-If you are using urxvt you might have to set backspacekey to DEC.
+If you are using urxvt you might have to set backspace key to DEC.
 .Sh AUTHORS
 .An Lazaros Koromilas Aq Mt lostd@2f30.org ,
 .An Dimitris Papastamos Aq Mt sin@2f30.org ,
diff --git a/nnn.c b/nnn.c
index 721d68df1496830de803f8cc60d3c7265bd591a8..17a104a82777b13c19c475d81176380ac5c23124 100644 (file)
--- a/nnn.c
+++ b/nnn.c
@@ -153,7 +153,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.9"
+#define VERSION "2.0"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 
 #define LEN(x) (sizeof(x) / sizeof(*(x)))