mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Prepare for release v1.5
This commit is contained in:
parent
0e22a4957f
commit
dcf8fbf78b
12
CHANGELOG
12
CHANGELOG
|
@ -1,3 +1,15 @@
|
|||
nnn v1.5
|
||||
2017-10-05
|
||||
|
||||
What's in?
|
||||
- File and directory creation (`n`)
|
||||
- Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
|
||||
- Show current entry number in status bar
|
||||
- Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
|
||||
- Show correct file size on i386 for large files (> 2GB)
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
nnn v1.4
|
||||
2017-09-04
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION = 1.4
|
||||
VERSION = 1.5
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
MANPREFIX = $(PREFIX)/share/man
|
||||
|
|
2
nnn.c
2
nnn.c
|
@ -135,7 +135,7 @@ disabledbg()
|
|||
#endif /* DEBUGMODE */
|
||||
|
||||
/* Macro definitions */
|
||||
#define VERSION "1.4"
|
||||
#define VERSION "1.5"
|
||||
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
|
||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||
#undef MIN
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# NOTE: This file is used in Travis CI for stricter test builds
|
||||
|
||||
VERSION = 1.4
|
||||
VERSION = 1.5
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
MANPREFIX = $(PREFIX)/share/man
|
||||
|
|
Loading…
Reference in a new issue