diff options
| author | 2017-07-26 09:31:03 +0530 | |
|---|---|---|
| committer | 2017-07-26 09:31:03 +0530 | |
| commit | 7fe6abb213947c87173d2df0e3abf88631e36e45 (patch) | |
| tree | 45be8a035ffebf2acef00a84c648a471d8465341 | |
| parent | 16f0054b48634907dc4962ecd905cb61d7dab6e8 (diff) | |
| download | nnn-7fe6abb213947c87173d2df0e3abf88631e36e45.tar.gz | |
Prepare for release v1.3
| -rw-r--r-- | CHANGELOG | 11 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | Makefile.native | 2 | ||||
| -rw-r--r-- | nnn.1 | 2 | ||||
| -rw-r--r-- | nnn.c | 2 |
5 files changed, 15 insertions, 4 deletions
@@ -1,3 +1,14 @@ +nnn v1.3 +2017-07-26 + +What's in? +- Show directories in custom color (default: enabled in blue) +- Option `-e` to use exiftool instead of mediainfo +- Fixed #34: nftw(3) broken with too many open descriptors +- More concise help screen + +------------------------------------------------------------------------------- + nnn v1.2 2017-06-29 @@ -1,4 +1,4 @@ -VERSION = 1.2 +VERSION = 1.3 PREFIX ?= /usr/local MANPREFIX = $(PREFIX)/share/man diff --git a/Makefile.native b/Makefile.native index ab832de..4eac41d 100644 --- a/Makefile.native +++ b/Makefile.native @@ -1,4 +1,4 @@ -VERSION = 1.2 +VERSION = 1.3 PREFIX ?= /usr/local MANPREFIX = $(PREFIX)/share/man @@ -1,4 +1,4 @@ -.Dd Jun 29, 2017 +.Dd Jul 26, 2017 .Dt NNN 1 .Os .Sh NAME @@ -96,7 +96,7 @@ disabledbg() #endif /* DEBUGMODE */ /* Macro definitions */ -#define VERSION "1.2" +#define VERSION "1.3" #define LEN(x) (sizeof(x) / sizeof(*(x))) #undef MIN #define MIN(x, y) ((x) < (y) ? (x) : (y)) |