Browse Source

Prepare for release v1.5

master
Arun Prakash Jana 7 years ago
parent
commit
dcf8fbf78b
No known key found for this signature in database GPG Key ID: A75979F35C080412
5 changed files with 16 additions and 4 deletions
  1. +12
    -0
      CHANGELOG
  2. +1
    -1
      Makefile
  3. +1
    -1
      nnn.1
  4. +1
    -1
      nnn.c
  5. +1
    -1
      scripts/make_native/Makefile.native

+ 12
- 0
CHANGELOG View File

@@ -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
- 1
Makefile View File

@@ -1,4 +1,4 @@
VERSION = 1.4
VERSION = 1.5

PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man


+ 1
- 1
nnn.1 View File

@@ -1,4 +1,4 @@
.Dd Sep 04, 2017
.Dd Oct 05, 2017
.Dt NNN 1
.Os
.Sh NAME


+ 1
- 1
nnn.c View File

@@ -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


+ 1
- 1
scripts/make_native/Makefile.native View File

@@ -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…
Cancel
Save