mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Prepare for release v2.3
This commit is contained in:
parent
40cecab4da
commit
1c96ac4ff5
|
@ -38,7 +38,7 @@ before_deploy:
|
|||
- sudo apt-get update -qy
|
||||
- sudo apt-get install -qy python3 python3-pip
|
||||
- sudo python3 -m pip install --upgrade pip
|
||||
- sudo python3 -m pip install --upgrade packagecore setuptools
|
||||
- sudo python3 -m pip install --upgrade packagecore python3-setuptools
|
||||
- packagecore -o dist/ "${TRAVIS_TAG#v}"
|
||||
- mv ../$REPO-${TRAVIS_TAG}.tar.gz dist/
|
||||
|
||||
|
|
30
CHANGELOG
30
CHANGELOG
|
@ -1,3 +1,33 @@
|
|||
nnn v2.3
|
||||
2019-02-19
|
||||
|
||||
- file picker mode
|
||||
- repo of user-contributed scripts
|
||||
- substring search for filters (option `-s`)
|
||||
- version sort (option `-n`)
|
||||
- disk usage calculation abort with <kbd>^C</kbd>
|
||||
- create sym/hard link(s) to files in selection
|
||||
- archiving of selection
|
||||
- show dir symlinks along with dirs in top
|
||||
- fixed CJK character handling at prompts
|
||||
- key `N` (1 <= N <= 4) to switch to context N
|
||||
- bring back `NNN_OPENER` to specify file opener
|
||||
- env var `NNN_NOTE` and keybind <kbd>^N</kbd> for quick notes
|
||||
- handle multiple arguments in VISUAL/EDITOR
|
||||
- show the current directory being scanned in `du` mode
|
||||
- select all files (<kbd>Y</kbd>)
|
||||
- show command prompt (<kbd>^P</kbd>)
|
||||
- key <kbd>,</kbd> replaces <kbd>`</kbd> as alternative Leader Key
|
||||
- keybind for visit pinned directory is now <kbd>^B</kbd>
|
||||
- additional key <kbd>^V</kbd> to run or select custom script
|
||||
- use libreadline for command prompt
|
||||
- reduce delay on <kbd>Esc</kbd> press
|
||||
- config option to avoid unexpected behaviour on 0-byte file open (see #187)
|
||||
- rename config option `DISABLE_FILE_OPEN_ON_NAV` to `NNN_RESTRICT_NAV_OPEN`
|
||||
- keys removed - <kbd>$</kbd>, <kbd>^</kbd>, <kbd>Backspace</kbd>, <kbd>^H</kbd>, <kbd>^P</kbd>, <kbd>^M</kbd>, <kbd>^W</kbd>, <kbd>`</kbd>
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
nnn v2.2
|
||||
2019-01-01
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION = 2.2
|
||||
VERSION = 2.3
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
MANPREFIX ?= $(PREFIX)/share/man
|
||||
|
|
|
@ -161,7 +161,7 @@ disabledbg()
|
|||
#endif /* DEBUGMODE */
|
||||
|
||||
/* Macro definitions */
|
||||
#define VERSION "2.2"
|
||||
#define VERSION "2.3"
|
||||
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
|
||||
|
||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||
|
|
Loading…
Reference in a new issue