diff options
| author | 2017-10-04 23:56:59 +0530 | |
|---|---|---|
| committer | 2017-10-05 00:18:53 +0530 | |
| commit | dcf8fbf78bc995a40b5bb05d5583ad209581c9f5 (patch) | |
| tree | e8f5f67fc6fa9b4d86ef1ce6f70fe1af06d81936 | |
| parent | 0e22a4957f4b8ddcf9ffbcc4f150fb1aaa6b1193 (diff) | |
| download | nnn-dcf8fbf78bc995a40b5bb05d5583ad209581c9f5.tar.gz | |
Prepare for release v1.5
| -rw-r--r-- | CHANGELOG | 12 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | nnn.1 | 2 | ||||
| -rw-r--r-- | nnn.c | 2 | ||||
| -rw-r--r-- | scripts/make_native/Makefile.native | 2 |
5 files changed, 16 insertions, 4 deletions
@@ -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 @@ -1,4 +1,4 @@ -VERSION = 1.4 +VERSION = 1.5 PREFIX ?= /usr/local MANPREFIX = $(PREFIX)/share/man @@ -1,4 +1,4 @@ -.Dd Sep 04, 2017 +.Dd Oct 05, 2017 .Dt NNN 1 .Os .Sh NAME @@ -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 diff --git a/scripts/make_native/Makefile.native b/scripts/make_native/Makefile.native index 44f1932..b0945f7 100644 --- a/scripts/make_native/Makefile.native +++ b/scripts/make_native/Makefile.native @@ -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 |