Skip to content

Commit d6c0e10

Browse files
committed
Prepare for release v1.8
1 parent 19448ed commit d6c0e10

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

CHANGELOG

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
nnn v1.8
2+
2018-05-02
3+
4+
What's in?
5+
- Run a custom script
6+
- Archive selected file/directory
7+
- Show number of cherry-picked files in multi-copy mode
8+
- Env var `NNN_SHOW_HIDDEN` to show hidden files by default
9+
- Additional information in help screen
10+
- Give preference to env var VISUAL, if defined, over EDITOR
11+
- New/changed/remapped shortcuts
12+
- <kbd>^]</kbd> - spawn a new shell in current directory
13+
- <kbd>r</kbd> - edit directory entries in vidir
14+
- <kbd>R</kbd> - run a custom script
15+
- <kbd>^I</kbd> - toggle navigate-as-you-type mode
16+
- <kbd>L</kbd> - lock the current terminal (Linux-only)
17+
- All Ctrl shortcuts enabled in navigate-as-you-type mode
18+
- Fix: GUI programs closing when parent terminal is closed
19+
- Recognize `~`, `-` and `&` at bookmark prompt
20+
- Recognize ruby (.rb) files as text files
21+
- Efficient integer-only file size calculation
22+
- Official inclusion on openSUSE and Fedora
23+
- Package generation for Ubuntu 18.04
24+
25+
-------------------------------------------------------------------------------
26+
127
nnn v1.7
228
2018-02-28
329

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 1.7
1+
VERSION = 1.8
22

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

nnn.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.Dd Feb 28, 2018
1+
.Dd May 02, 2018
22
.Dt NNN 1
33
.Os
44
.Sh NAME

nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ disabledbg()
138138
#endif /* DEBUGMODE */
139139

140140
/* Macro definitions */
141-
#define VERSION "1.7"
141+
#define VERSION "1.8"
142142
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
143143

144144
#define LEN(x) (sizeof(x) / sizeof(*(x)))

packagecore.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,13 @@ packages:
111111
deps:
112112
- libncursesw5
113113
- libreadline6
114+
ubuntu18.04:
115+
builddeps:
116+
- make
117+
- gcc
118+
- pkg-config
119+
- libncursesw5-dev
120+
- libreadline-dev
121+
deps:
122+
- libncursesw5
123+
- libreadline7

0 commit comments

Comments
 (0)