aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG17
-rw-r--r--Makefile2
-rw-r--r--README.md2
-rwxr-xr-xnlay2
-rw-r--r--nnn.12
-rw-r--r--nnn.c2
-rw-r--r--scripts/make_native/Makefile.native2
7 files changed, 24 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index af95648..0572b1f 100644
--- 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
diff --git a/Makefile b/Makefile
index 7dfe151..d281d0c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.3
+VERSION = 1.4
PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man
diff --git a/README.md b/README.md
index 822be12..0fda3d5 100644
--- 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 f5b4e45..0c73df8 100755
--- 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 fbc788a..cd1446a 100644
--- 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 c07fb3e..62239f0 100644
--- 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))
diff --git a/scripts/make_native/Makefile.native b/scripts/make_native/Makefile.native
index 4ceff02..aaf6d9b 100644
--- a/scripts/make_native/Makefile.native
+++ b/scripts/make_native/Makefile.native
@@ -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