CHANGELOG | 35 +++++++++++++++++++++++++++++++++++
Makefile | 2 +-
nnn.1 | 2 +-
packagecore.yaml | 10 ++++++++++
src/nnn.c | 2 +-
diff --git a/CHANGELOG b/CHANGELOG
index 490fdd575c8fc1652722f4be9ff6bde307444310..c4db673f154e48d17709258c00edd2702f8ab823 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 `/` - ` (backtick)
+- vim-like scrolloff support
+- ^D & ^U: scroll half page, PgDn & PdUp: scroll full page
+- fix selection across contexts
+- recognize Home and End 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 7dcf5eb7517f4e571f3127000df86def6ec56d24..c9d6af38d346b36d46b7b91bd60afed37b6331c6 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 3d66c93ebd14d8c1a8c2868cc0e57802e1cf14a2..19518a549f462653296f894925c5c8bb2a4de278 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 444e388315e00d0bc92fc06f2a47e1be51cdde52..27b29cdece3f2dda76030294559b3cf6cf2f7bdc 100644
--- a/packagecore.yaml
+++ b/packagecore.yaml
@@ -115,6 +115,16 @@ - readline-devel
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 ce12e8ba6d8f4c6f4e8d7873de91ae87a1ae55d4..d1b64bc2a508e28679557bc489fffc19c162a9a7 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -99,7 +99,7 @@ #include "nnn.h"
#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