Skip to content

Commit 590d079

Browse files
committed
Prepare for release v1.2
1 parent f9a249c commit 590d079

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
nnn v1.2
2+
2017-06-29
3+
4+
What's in?
5+
- Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
6+
- Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
7+
- Bookmark support (maximum 10, key `b`)
8+
- *Navigate-as-you-type* mode (key `Insert` or option `-i`)
9+
- Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
10+
- Show current directory content size and file count in disk usage mode
11+
- Add detail view mode as default, use `-l` to start in light mode
12+
- Shortcuts `F2` and `^L` to refresh and unfilter
13+
Note: if filter is empty, `Enter` *opens* the currently selected file now
14+
- Help screen shows bookmarks and configuration
15+
- Show a message when calculating disk usage
16+
- Show the spawned shell level
17+
- Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
18+
19+
-------------------------------------------------------------------------------
20+
121
nnn v1.1
222
2017-05-12
323

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 1.1
1+
VERSION = 1.2
22

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

Makefile.native

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 1.1
1+
VERSION = 1.2
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 May 12, 2017
1+
.Dd Jun 29, 2017
22
.Dt NNN 1
33
.Os
44
.Sh NAME

nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ disabledbg()
9696
#endif /* DEBUGMODE */
9797

9898
/* Macro definitions */
99-
#define VERSION "v1.1"
99+
#define VERSION "1.2"
100100
#define LEN(x) (sizeof(x) / sizeof(*(x)))
101101
#undef MIN
102102
#define MIN(x, y) ((x) < (y) ? (x) : (y))

0 commit comments

Comments
 (0)