Skip to content

Commit a310176

Browse files
committed
Prepare for release v1.1
1 parent b06ea71 commit a310176

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGELOG

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
nnn v1.1
2+
2017-05-12
3+
4+
News
5+
- Introducing nlay - a highly customizable bash script to handle media type
6+
- nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
7+
- RPM packages for CentOS 7 and Fedora 24
8+
9+
Modifications
10+
- *Search-as-you-type* support
11+
- Unicode support
12+
- Option `-S` to start in disk usage analyzer mode
13+
- Show media information (using mediainfo)
14+
- Use readline at change directory prompt
15+
- Jump to prev directories using `cd .....` (with `.` as PWD)
16+
- Jump to initial directory using `&`
17+
- Show help, mediainfo and file info in PAGER
18+
- Several optimizations
19+
20+
-------------------------------------------------------------------------------
21+
122
nnn v1.0
223
2017-04-13
324

Makefile

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

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
7373
- Quit and change directory (*easy* shell integration)
7474
- Open any file in EDITOR (fallback vi) or PAGER (fallback less)
7575
- VIM-ish keybinds
76-
- UTF-8 support
76+
- Unicode support
7777

7878
### Performance
7979

nnn.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.Dd April 13, 2017
1+
.Dd May 12, 2017
22
.Dt NNN 1
33
.Os
44
.Sh NAME

nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ xprintf(int fd, const char *fmt, ...)
6363
#define DPRINTF_P(x)
6464
#endif /* DEBUG */
6565

66-
#define VERSION "v1.0"
66+
#define VERSION "v1.1"
6767
#define LEN(x) (sizeof(x) / sizeof(*(x)))
6868
#undef MIN
6969
#define MIN(x, y) ((x) < (y) ? (x) : (y))

0 commit comments

Comments
 (0)