]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for v1.4 release
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 4 Sep 2017 04:53:02 +0000 (10:23 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 4 Sep 2017 04:53:02 +0000 (10:23 +0530)
CHANGELOG
Makefile
README.md
nlay
nnn.1
nnn.c
scripts/make_native/Makefile.native

index af95648303b961e5dcaddb21784f36fb58ff9e48..0572b1f33558f285ac07f5717b8b37592a0fa384 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,20 @@
+nnn v1.4
+2017-09-04
+
+What's in?
+- Monitor directory changes
+- In-place file rename
+- Pin (`Ctrl-B`) a directory and visit (`Ctrl-V`) it anytime
+- Auto-completion scripts
+- Show volume capacity and free in help
+- Auto-fallback to light mode if too few columns (< 35)
+- PackageCore integration
+- Unsupported Function keys (they never work universally):
+  - `F2` (rename), use `Ctrl-R`
+  - `F5` (refresh), use `Ctrl-L`
+
+-------------------------------------------------------------------------------
+
 nnn v1.3
 2017-07-26
 
index 7dfe15164011f6f929a2b09a4956be554713b9e0..d281d0cb56d4db0c556163362be17a10de3f3113 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.3
+VERSION = 1.4
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
index 822be1207c31637fadebe4d308b49afb3dddf171..0fda3d58829bc25d9c6f7242c783af8a3e428343 100644 (file)
--- a/README.md
+++ b/README.md
@@ -111,7 +111,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
   - Change directory at exit (*easy* shell integration)
   - Open any file in EDITOR (fallback vi) or PAGER (fallback less)
   - Open current directory in a custom GUI file browser
-  - Real-time directory content modification updates
+  - Monitor directory changes
   - Terminal screensaver (default vlock, customizable) integration
 - Unicode support
 - Highly optimized code, minimal resource usage
diff --git a/nlay b/nlay
index f5b4e45e461ffc9a8e903f6112aeb48fc0c54a54..0c73df83cbcf838ee9f9c6e7a84971380d3a9e7c 100755 (executable)
--- a/nlay
+++ b/nlay
@@ -28,6 +28,8 @@
 #
 # Author: Arun Prakash Jana
 # Email: engineerarun@gmail.com
+# Homepage: https://github.com/jarun
+# Copyright © 2016-2017 Arun Prakash Jana
 # #############################################################################
 
 
diff --git a/nnn.1 b/nnn.1
index fbc788af3f03c626744101aa7d1d572f7a869c8f..cd1446ad54e554116406836dac98edeec192f1f8 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Jul 26, 2017
+.Dd Sep 04, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index c07fb3e8cc1453ce096061026ccce68a544d87fa..62239f0fc5f8156576d3d7cc85b28100dd54a40c 100644 (file)
--- a/nnn.c
+++ b/nnn.c
@@ -132,7 +132,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.3"
+#define VERSION "1.4"
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
 #undef MIN
 #define MIN(x, y) ((x) < (y) ? (x) : (y))
index 4ceff020b6164e461dbf1a12ced7b3d64cb32b4a..aaf6d9ba1a7317fdbc163674d31fc2474a03a12a 100644 (file)
@@ -5,7 +5,7 @@
 #
 # NOTE: This file is used in Travis CI for stricter test builds
 
-VERSION = 1.3
+VERSION = 1.4
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man