mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Prepare for release v2.0
This commit is contained in:
parent
e89da59d91
commit
d4ab97cb54
12
CHANGELOG
12
CHANGELOG
|
@ -1,3 +1,15 @@
|
||||||
|
nnn v1.9
|
||||||
|
2018-10-19
|
||||||
|
|
||||||
|
What's in?
|
||||||
|
- Mode to show apparent size (key `S`)
|
||||||
|
- Script to integrate `patool` instead of `atool`
|
||||||
|
- Support `bashlock` (OS X) and `lock` (BSD) as terminal locker
|
||||||
|
- Symbol `@/` for symlink to dir
|
||||||
|
- Dependency on `libreadline` removed
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v1.9
|
nnn v1.9
|
||||||
2018-08-10
|
2018-08-10
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION = 1.9
|
VERSION = 2.0
|
||||||
|
|
||||||
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 Aug 10, 2018
|
.Dd Oct 19, 2018
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
2
nnn.c
2
nnn.c
|
@ -153,7 +153,7 @@ disabledbg()
|
||||||
#endif /* DEBUGMODE */
|
#endif /* DEBUGMODE */
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "1.9"
|
#define VERSION "2.0"
|
||||||
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
|
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
|
||||||
|
|
||||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||||
|
|
Loading…
Reference in a new issue