mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Prepare for release v1.1
This commit is contained in:
parent
b06ea71d98
commit
a310176160
21
CHANGELOG
21
CHANGELOG
|
@ -1,3 +1,24 @@
|
||||||
|
nnn v1.1
|
||||||
|
2017-05-12
|
||||||
|
|
||||||
|
News
|
||||||
|
- Introducing nlay - a highly customizable bash script to handle media type
|
||||||
|
- nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
|
||||||
|
- RPM packages for CentOS 7 and Fedora 24
|
||||||
|
|
||||||
|
Modifications
|
||||||
|
- *Search-as-you-type* support
|
||||||
|
- Unicode support
|
||||||
|
- Option `-S` to start in disk usage analyzer mode
|
||||||
|
- Show media information (using mediainfo)
|
||||||
|
- Use readline at change directory prompt
|
||||||
|
- Jump to prev directories using `cd .....` (with `.` as PWD)
|
||||||
|
- Jump to initial directory using `&`
|
||||||
|
- Show help, mediainfo and file info in PAGER
|
||||||
|
- Several optimizations
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v1.0
|
nnn v1.0
|
||||||
2017-04-13
|
2017-04-13
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION = 1.0
|
VERSION = 1.1
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
|
@ -73,7 +73,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
|
||||||
- Quit and change directory (*easy* shell integration)
|
- Quit and change directory (*easy* shell integration)
|
||||||
- Open any file in EDITOR (fallback vi) or PAGER (fallback less)
|
- Open any file in EDITOR (fallback vi) or PAGER (fallback less)
|
||||||
- VIM-ish keybinds
|
- VIM-ish keybinds
|
||||||
- UTF-8 support
|
- Unicode support
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
|
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -1,4 +1,4 @@
|
||||||
.Dd April 13, 2017
|
.Dd May 12, 2017
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
2
nnn.c
2
nnn.c
|
@ -63,7 +63,7 @@ xprintf(int fd, const char *fmt, ...)
|
||||||
#define DPRINTF_P(x)
|
#define DPRINTF_P(x)
|
||||||
#endif /* DEBUG */
|
#endif /* DEBUG */
|
||||||
|
|
||||||
#define VERSION "v1.0"
|
#define VERSION "v1.1"
|
||||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||||
#undef MIN
|
#undef MIN
|
||||||
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
||||||
|
|
Loading…
Reference in a new issue