aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-10-19 15:24:15 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-10-19 15:24:15 +0530
commitd4ab97cb5468035f77d24317f87f78045798762e (patch)
tree1a55de605740b467e2a2dd1d4ec94362b817c285
parente89da59d9189194975f1ad06d3cba476d8e915f3 (diff)
downloadnnn-d4ab97cb5468035f77d24317f87f78045798762e.tar.gz
Prepare for release v2.0
-rw-r--r--CHANGELOG12
-rw-r--r--Makefile2
-rw-r--r--nnn.14
-rw-r--r--nnn.c2
4 files changed, 16 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b3c14a1..f4ef4a1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,16 @@
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
What's in?
diff --git a/Makefile b/Makefile
index 598fae2..30b76ac 100644
--- 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 8dacf19..c99c686 100644
--- 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 721d68d..17a104a 100644
--- 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)))