diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-05 22:39:07 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-08-06 04:13:10 +0530 |
commit | 75bfcb18347658737c35865b8fee57f41e7e64e0 (patch) | |
tree | 7cdba5469ad3e13edbb376f71404d45c3b74b9a7 | |
parent | a95fc0c37a9755b7c96bedd90336284d9b169357 (diff) | |
download | nnn-75bfcb18347658737c35865b8fee57f41e7e64e0.tar.gz |
Prepare for release v2.6
-rw-r--r-- | CHANGELOG | 36 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | nnn.1 | 2 | ||||
-rw-r--r-- | packagecore.yaml | 10 | ||||
-rw-r--r-- | src/nnn.c | 2 |
5 files changed, 39 insertions, 13 deletions
@@ -1,3 +1,39 @@ +nnn v2.6 +2019-08-06 + +- new plugins + - view image or browse a directory of images in terminal + - show image thumbnails + - PDF and text file reader + - calculate and verify checksum of selection or file + - append (and play) selection/dir/file music in MOC + - variable bitrate mp3 ringtone generator + - split current file or join selection +- better experience on Termux (and touch based devices) + - mouse scrolling support (with ncursesw6.0 and above) + - tap/left click to visit parent, toggle nav-as-you-type mode +- light mode set as default +- show status bar and use reverse video in light mode +- changed program options + - `-d`: detail mode + - `-H`: show hidden files + - `-l` is retired +- support `XDG_CONFIG_HOME` +- support <kbd>/</kbd> as an additional Leader key when filter is on +- sort by file extension +- use zip/unzip/tar if atool/bsdtar not found +- support duplicate file (key <kbd>^R</kbd>, same as rename file) +- new config option `NNN_SSHFS_OPTS` to specify `sshfs` options +- restrict opening 0 byte files (`NNN_RESTRICT_0B` is obsolete) +- critical defects fixed + - fix #276 - crash with variable length inotify event handling + - fix #285 - hang after deleting/moving current directory + - fix #274 - a broken prompt on empty input with libreadline + - fix #304 - list selection from another instance +- `cmatrix` as locker fallback +- wait for user input after running a command from prompt +- scrolloff set to 3 from 5 + nnn v2.5 2019-05-27 @@ -1,4 +1,4 @@ -VERSION = 2.5 +VERSION = 2.6 PREFIX ?= /usr/local MANPREFIX ?= $(PREFIX)/share/man @@ -1,4 +1,4 @@ -.Dd May 27, 2019 +.Dd Aug 06, 2019 .Dt NNN 1 .Os .Sh NAME diff --git a/packagecore.yaml b/packagecore.yaml index cb9841a..27b29cd 100644 --- a/packagecore.yaml +++ b/packagecore.yaml @@ -65,16 +65,6 @@ packages: deps: - libncursesw5 - readline-common - debian10: - builddeps: - - make - - gcc - - pkg-config - - libncursesw5-dev - - libreadline-dev - deps: - - libncursesw5 - - readline-common fedora25: builddeps: - make @@ -99,7 +99,7 @@ #include "dbg.h" /* Macro definitions */ -#define VERSION "2.5" +#define VERSION "2.6" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #ifndef S_BLKSIZE |