CHANGELOG | 11 +++++++++++ Makefile | 2 +- Makefile.native | 2 +- nnn.1 | 2 +- nnn.c | 2 +- diff --git a/CHANGELOG b/CHANGELOG index a0f8e0e0865ff10e14dbf698e434b97bf1d06fa1..af95648303b961e5dcaddb21784f36fb58ff9e48 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/Makefile b/Makefile index 5e87f4fe3b0f281fab3a66307b6243c5202bfd07..6d477e20dc3aed410e9b96b66adc3a8d8db6a153 100644 --- a/Makefile +++ b/Makefile @@ -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 ab832de6932eb34115feaa23e92397e31eb4cf8a..4eac41d110d7cb39294823a4690ecfc001bdf4a2 100644 --- a/Makefile.native +++ b/Makefile.native @@ -1,4 +1,4 @@ -VERSION = 1.2 +VERSION = 1.3 PREFIX ?= /usr/local MANPREFIX = $(PREFIX)/share/man diff --git a/nnn.1 b/nnn.1 index 4fde8e4f47eebb358f487d959d3729091b12aed6..562041d74f066198a7d5e5470880339b529bcc87 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Jun 29, 2017 +.Dd Jul 26, 2017 .Dt NNN 1 .Os .Sh NAME diff --git a/nnn.c b/nnn.c index a0f5c3aa6b7156798284110865e187fd2c742200..195f095eadbb1113277602fc36b54ff383aca10a 100644 --- a/nnn.c +++ b/nnn.c @@ -96,7 +96,7 @@ #define DPRINTF_P(x) #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))