Prepare for release v1.9

This commit is contained in:
Arun Prakash Jana 2018-08-10 07:13:53 +05:30
parent a2caf24592
commit 68f0af6220
No known key found for this signature in database
GPG Key ID: A75979F35C080412
4 changed files with 18 additions and 3 deletions

View File

@ -1,3 +1,18 @@
nnn v1.9
2018-08-10
What's in?
- Support unlimited number of scripts
- Pass currently selected filename as first argument to custom scripts
- Support directory auto-select in _navigate-as-you-type_ mode
- Show selection name in archive name prompt
- Support Cygwin opener
- Better support on RHEL 25 with earlier version on curses
- Sample script for `fzy` integration
- Now available on OpenBSD
-------------------------------------------------------------------------------
nnn v1.8
2018-05-02

View File

@ -1,4 +1,4 @@
VERSION = 1.8
VERSION = 1.9
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man

2
nnn.1
View File

@ -1,4 +1,4 @@
.Dd May 02, 2018
.Dd Aug 10, 2018
.Dt NNN 1
.Os
.Sh NAME

2
nnn.c
View File

@ -138,7 +138,7 @@ disabledbg()
#endif /* DEBUGMODE */
/* Macro definitions */
#define VERSION "1.8"
#define VERSION "1.9"
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
#define LEN(x) (sizeof(x) / sizeof(*(x)))