mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Prepare for release v2.5
This commit is contained in:
parent
788dc80bb6
commit
5ea8218e4f
35
CHANGELOG
35
CHANGELOG
|
@ -1,3 +1,38 @@
|
|||
nnn v2.5
|
||||
2019-05-27
|
||||
|
||||
- mouse support
|
||||
- new location for config files - `~/.config/nnn`
|
||||
- plugin dir location: `~/.config/nnn/plugins`
|
||||
- selection file `.nnncp` is now `~/.config/nnn/.selection`
|
||||
- plugins:
|
||||
- pdfview: view a PDF in pager
|
||||
- nmount: (un)mount a storage device
|
||||
- ndiff: file and directory diff for selection
|
||||
- hexview: view a file in hex
|
||||
- imgresize: batch resize images to desktop resolution
|
||||
- ipinfo: check your IP address and whois information
|
||||
- transfer: upload a file to transfer.in
|
||||
- pastebin: paste the contents of a text file to paste.ubuntu.com
|
||||
- boom: play random music from a directory
|
||||
- nwal: set an image as wallpaper using nitrogen
|
||||
- pywal: set selected image as wallpaper, change terminal color scheme
|
||||
- getplugs: update plugins
|
||||
- SSHFS support
|
||||
- support `bsdtar`, simplify `patool` integration
|
||||
- native batch rename support (`vidir` dependency dropped)
|
||||
- changes to support [configuration](https://github.com/jarun/nnn/wiki/nnn-as-default-file-manager) as the default file manager
|
||||
- per-context detail/light mode
|
||||
- case-insensitive version compare
|
||||
- shortcut to visit `/` - <kbd>`</kbd> (backtick)
|
||||
- vim-like scrolloff support
|
||||
- <kbd>^D</kbd> & <kbd>^U</kbd>: scroll half page, <kbd>PgDn</kbd> & <kbd>PdUp</kbd>: scroll full page
|
||||
- fix selection across contexts
|
||||
- recognize <kbd>Home</kbd> and <kbd>End</kbd> keys at prompt for editing
|
||||
- fix broken program option `-b`
|
||||
- POSIX-compliant user-scripts (wherever possible)
|
||||
- `NNN_SCRIPT` is retired (replaced by plugins)
|
||||
|
||||
nnn v2.4
|
||||
2019-03-19
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION = 2.4
|
||||
VERSION = 2.5
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
MANPREFIX ?= $(PREFIX)/share/man
|
||||
|
|
|
@ -115,6 +115,16 @@ packages:
|
|||
deps:
|
||||
- ncurses
|
||||
- readline
|
||||
fedora30:
|
||||
builddeps:
|
||||
- make
|
||||
- gcc
|
||||
- pkg-config
|
||||
- ncurses-devel
|
||||
- readline-devel
|
||||
deps:
|
||||
- ncurses
|
||||
- readline
|
||||
# opensuse42.3:
|
||||
# builddeps:
|
||||
# - make
|
||||
|
|
Loading…
Reference in a new issue