]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v1.2 v1.2
authorArun Prakash Jana <engineerarun@gmail.com>
Thu, 29 Jun 2017 04:18:11 +0000 (09:48 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Thu, 29 Jun 2017 04:18:11 +0000 (09:48 +0530)
CHANGELOG
Makefile
Makefile.native
nnn.1
nnn.c

index 1b1c3b1261f6a464058d8ecfabd5d3f225c53850..a0f8e0e0865ff10e14dbf698e434b97bf1d06fa1 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,23 @@
+nnn v1.2
+2017-06-29
+
+What's in?
+- Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
+- Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
+- Bookmark support (maximum 10, key `b`)
+- *Navigate-as-you-type* mode (key `Insert` or option `-i`)
+- Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
+- Show current directory content size and file count in disk usage mode
+- Add detail view mode as default, use `-l` to start in light mode
+- Shortcuts `F2` and `^L` to refresh and unfilter
+  Note: if filter is empty, `Enter` *opens* the currently selected file now
+- Help screen shows bookmarks and configuration
+- Show a message when calculating disk usage
+- Show the spawned shell level
+- Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
+
+-------------------------------------------------------------------------------
+
 nnn v1.1
 2017-05-12
 
index dd562ad9099bd3b553461eff71682a63d349e8ae..f1aed0f90e661c45142b985345d3a3607b3b5e70 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.1
+VERSION = 1.2
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
index 310f138d9e78069011e28a0eaf66e303bfa002d6..8377972e383134f3f72f0481d24d6d17a118cf09 100644 (file)
@@ -1,4 +1,4 @@
-VERSION = 1.1
+VERSION = 1.2
 
 PREFIX = /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index bbd2a445d5b9168776861085803e0a3c449b4ca2..f55637faa01728e02fea54e63a17c7d20b80dfbe 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd May 12, 2017
+.Dd Jun 29, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index 5587d4b496e916df25c7d33206b86b6df33bf7d3..6dc789579c426099e765df01ec0a297043bce377 100644 (file)
--- a/nnn.c
+++ b/nnn.c
@@ -96,7 +96,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "v1.1"
+#define VERSION "1.2"
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
 #undef MIN
 #define MIN(x, y) ((x) < (y) ? (x) : (y))