aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-05-27 08:00:32 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-05-27 08:00:32 +0530
commit5ea8218e4f85336f092fefe077af21673ed6beb5 (patch)
treebe348477a6b165bab0e06c351b9ec0b91d30a512
parent788dc80bb6440c055318c0cf3b0f3d7704bbfa83 (diff)
downloadnnn-5ea8218e4f85336f092fefe077af21673ed6beb5.tar.gz
Prepare for release v2.5
-rw-r--r--CHANGELOG35
-rw-r--r--Makefile2
-rw-r--r--nnn.12
-rw-r--r--packagecore.yaml10
-rw-r--r--src/nnn.c2
5 files changed, 48 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 490fdd5..c4db673 100644
--- a/CHANGELOG
+++ b/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
diff --git a/Makefile b/Makefile
index 7dcf5eb..c9d6af3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.4
+VERSION = 2.5
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 3d66c93..19518a5 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Mar 19, 2019
+.Dd May 27, 2019
.Dt NNN 1
.Os
.Sh NAME
diff --git a/packagecore.yaml b/packagecore.yaml
index 444e388..27b29cd 100644
--- a/packagecore.yaml
+++ b/packagecore.yaml
@@ -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
diff --git a/src/nnn.c b/src/nnn.c
index ce12e8b..d1b64bc 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -99,7 +99,7 @@
#include "dbg.h"
/* Macro definitions */
-#define VERSION "2.4"
+#define VERSION "2.5"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
#ifndef S_BLKSIZE