]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.6 v2.6
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 5 Aug 2019 17:09:07 +0000 (22:39 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 5 Aug 2019 22:43:10 +0000 (04:13 +0530)
CHANGELOG
Makefile
nnn.1
packagecore.yaml
src/nnn.c

index c4db673f154e48d17709258c00edd2702f8ab823..26ebff914331a9930b538e4b537fae8ba202ecc0 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
 
index 8f57c936feb9f2d4b3c88c58a6d5620b09434e3f..b55e15f3fe7a10ea0940313cd07bc8fed97a042e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.5
+VERSION = 2.6
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 9b49d966a7a8892200996e77eda5905f2fccbb90..85f62a766836a4f68238047ad8f8ace2cc7bb535 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd May 27, 2019
+.Dd Aug 06, 2019
 .Dt NNN 1
 .Os
 .Sh NAME
index cb9841a421441be0f419060fecf3cd0be69c1f6f..27b29cdece3f2dda76030294559b3cf6cf2f7bdc 100644 (file)
@@ -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
index 5a9540766dbd8528deeb582168194a5211389d3b..7a258567a3cbdb0aa5679c942a9a312c40312098 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -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