]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v1.5
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 4 Oct 2017 18:26:59 +0000 (23:56 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 4 Oct 2017 18:48:53 +0000 (00:18 +0530)
CHANGELOG
Makefile
nnn.1
nnn.c
scripts/make_native/Makefile.native

index 0572b1f33558f285ac07f5717b8b37592a0fa384..df5973afb117984f70f76c36323a9b9b6f340aea 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+nnn v1.5
+2017-10-05
+
+What's in?
+- File and directory creation (`n`)
+- Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
+- Show current entry number in status bar
+- Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
+- Show correct file size on i386 for large files (> 2GB)
+
+-------------------------------------------------------------------------------
+
 nnn v1.4
 2017-09-04
 
index 6103610d1ef76c2009e9072f37219df87d5cbd9b..3bce324705ffb3f3dcd5540cf494d3412f770682 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.4
+VERSION = 1.5
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 26ec8854c1ed7db3a054edcb61b18810e38154b3..01680d6c18691e0e3141cbde933197f50a6bc6fc 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Sep 04, 2017
+.Dd Oct 05, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index cbb28043d1c56017e5861f6c9909518b8cfaac63..e630ebabcc7dba9cdb8edf7bd649dbda36668bee 100644 (file)
--- a/nnn.c
+++ b/nnn.c
@@ -135,7 +135,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.4"
+#define VERSION "1.5"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
 #undef MIN
index 44f1932d5fbcfe0173be27e0165b7e39f591fd30..b0945f7d3b53b472fa63419cf4e94b7110029353 100644 (file)
@@ -4,7 +4,7 @@
 #
 # NOTE: This file is used in Travis CI for stricter test builds
 
-VERSION = 1.4
+VERSION = 1.5
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man