]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v1.6
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 25 Dec 2017 11:43:25 +0000 (17:13 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 25 Dec 2017 11:43:25 +0000 (17:13 +0530)
CHANGELOG
Makefile
nnn.1
nnn.c
scripts/make_native/Makefile.native

index df5973afb117984f70f76c36323a9b9b6f340aea..f0cf6793994edb3287fd08be2034d3feacf3e3c1 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+nnn v1.6
+2017-12-25
+
+What's in?
+- Shortcut `^O` to open file with custom application
+- Option `-b` to open bookmarks directly at start
+- Huge performance improvements around file name storing and handling
+- Several large static buffers removed or reduced
+- Several internal algorithms fine tuned for performance/resource usage
+
+-------------------------------------------------------------------------------
+
 nnn v1.5
 2017-10-05
 
index 254fa5a5c3febef4202dfbc510e2a096c1021bcb..fdbd3752515151623617995e7275a0af4afa51a5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.5
+VERSION = 1.6
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 3407c09760fd7b18245600d4d505ca7de3076439..1141ea80b01ba4634170565a4def7771c9d946ec 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Oct 05, 2017
+.Dd Dec 25, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index 7e9e1dd191d52ad5adea4778c699f51c468b859f..e4674012d35dc8b530e0f79bfcc85b7606409010 100644 (file)
--- a/nnn.c
+++ b/nnn.c
@@ -138,7 +138,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.5"
+#define VERSION "1.6"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
index b0945f7d3b53b472fa63419cf4e94b7110029353..5cfa3ee9dbd3d7f47f513628a7ef1469fc36af13 100644 (file)
@@ -4,7 +4,7 @@
 #
 # NOTE: This file is used in Travis CI for stricter test builds
 
-VERSION = 1.5
+VERSION = 1.6
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man