mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Prepare for release v1.3
This commit is contained in:
parent
16f0054b48
commit
7fe6abb213
11
CHANGELOG
11
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
|
nnn v1.2
|
||||||
2017-06-29
|
2017-06-29
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION = 1.2
|
VERSION = 1.3
|
||||||
|
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = 1.2
|
VERSION = 1.3
|
||||||
|
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -1,4 +1,4 @@
|
||||||
.Dd Jun 29, 2017
|
.Dd Jul 26, 2017
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
2
nnn.c
2
nnn.c
|
@ -96,7 +96,7 @@ disabledbg()
|
||||||
#endif /* DEBUGMODE */
|
#endif /* DEBUGMODE */
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "1.2"
|
#define VERSION "1.3"
|
||||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||||
#undef MIN
|
#undef MIN
|
||||||
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
||||||
|
|
Loading…
Reference in a new issue