Prepare for v1.4 release

This commit is contained in:
Arun Prakash Jana 2017-09-04 10:23:02 +05:30
parent ecd54bc8b4
commit 91ab00061c
No known key found for this signature in database
GPG key ID: A75979F35C080412
7 changed files with 24 additions and 5 deletions

View file

@ -1,3 +1,20 @@
nnn v1.4
2017-09-04
What's in?
- Monitor directory changes
- In-place file rename
- Pin (`Ctrl-B`) a directory and visit (`Ctrl-V`) it anytime
- Auto-completion scripts
- Show volume capacity and free in help
- Auto-fallback to light mode if too few columns (< 35)
- PackageCore integration
- Unsupported Function keys (they never work universally):
- `F2` (rename), use `Ctrl-R`
- `F5` (refresh), use `Ctrl-L`
-------------------------------------------------------------------------------
nnn v1.3 nnn v1.3
2017-07-26 2017-07-26

View file

@ -1,4 +1,4 @@
VERSION = 1.3 VERSION = 1.4
PREFIX ?= /usr/local PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man MANPREFIX = $(PREFIX)/share/man

View file

@ -111,7 +111,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
- Change directory at exit (*easy* shell integration) - Change directory at exit (*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)
- Open current directory in a custom GUI file browser - Open current directory in a custom GUI file browser
- Real-time directory content modification updates - Monitor directory changes
- Terminal screensaver (default vlock, customizable) integration - Terminal screensaver (default vlock, customizable) integration
- Unicode support - Unicode support
- Highly optimized code, minimal resource usage - Highly optimized code, minimal resource usage

2
nlay
View file

@ -28,6 +28,8 @@
# #
# Author: Arun Prakash Jana # Author: Arun Prakash Jana
# Email: engineerarun@gmail.com # Email: engineerarun@gmail.com
# Homepage: https://github.com/jarun
# Copyright © 2016-2017 Arun Prakash Jana
# ############################################################################# # #############################################################################

2
nnn.1
View file

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

2
nnn.c
View file

@ -132,7 +132,7 @@ disabledbg()
#endif /* DEBUGMODE */ #endif /* DEBUGMODE */
/* Macro definitions */ /* Macro definitions */
#define VERSION "1.3" #define VERSION "1.4"
#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))

View file

@ -5,7 +5,7 @@
# #
# NOTE: This file is used in Travis CI for stricter test builds # NOTE: This file is used in Travis CI for stricter test builds
VERSION = 1.3 VERSION = 1.4
PREFIX ?= /usr/local PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man MANPREFIX = $(PREFIX)/share/man