aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-05-02 02:42:30 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-05-02 03:23:38 +0530
commitd6c0e1093ae43a25636f57aa0edbb53891aaec50 (patch)
tree2e1dfe1e0eec3faf27c1dae09ed2c1383234fa73
parent19448edfc66ed2a294eb2eb255678b264add5048 (diff)
downloadnnn-d6c0e1093ae43a25636f57aa0edbb53891aaec50.tar.gz
Prepare for release v1.8
-rw-r--r--CHANGELOG26
-rw-r--r--Makefile2
-rw-r--r--nnn.12
-rw-r--r--nnn.c2
-rw-r--r--packagecore.yaml10
5 files changed, 39 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 739c7f7..c982c70 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,29 @@
+nnn v1.8
+2018-05-02
+
+What's in?
+- Run a custom script
+- Archive selected file/directory
+- Show number of cherry-picked files in multi-copy mode
+- Env var `NNN_SHOW_HIDDEN` to show hidden files by default
+- Additional information in help screen
+- Give preference to env var VISUAL, if defined, over EDITOR
+- New/changed/remapped shortcuts
+ - <kbd>^]</kbd> - spawn a new shell in current directory
+ - <kbd>r</kbd> - edit directory entries in vidir
+ - <kbd>R</kbd> - run a custom script
+ - <kbd>^I</kbd> - toggle navigate-as-you-type mode
+ - <kbd>L</kbd> - lock the current terminal (Linux-only)
+- All Ctrl shortcuts enabled in navigate-as-you-type mode
+- Fix: GUI programs closing when parent terminal is closed
+- Recognize `~`, `-` and `&` at bookmark prompt
+- Recognize ruby (.rb) files as text files
+- Efficient integer-only file size calculation
+- Official inclusion on openSUSE and Fedora
+- Package generation for Ubuntu 18.04
+
+-------------------------------------------------------------------------------
+
nnn v1.7
2018-02-28
diff --git a/Makefile b/Makefile
index 95994c9..7e58fbd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.7
+VERSION = 1.8
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index dc33553..17618bc 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Feb 28, 2018
+.Dd May 02, 2018
.Dt NNN 1
.Os
.Sh NAME
diff --git a/nnn.c b/nnn.c
index c4ffa6e..a3a422a 100644
--- a/nnn.c
+++ b/nnn.c
@@ -138,7 +138,7 @@ disabledbg()
#endif /* DEBUGMODE */
/* Macro definitions */
-#define VERSION "1.7"
+#define VERSION "1.8"
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
#define LEN(x) (sizeof(x) / sizeof(*(x)))
diff --git a/packagecore.yaml b/packagecore.yaml
index a9575da..1ab1535 100644
--- a/packagecore.yaml
+++ b/packagecore.yaml
@@ -111,3 +111,13 @@ packages:
deps:
- libncursesw5
- libreadline6
+ ubuntu18.04:
+ builddeps:
+ - make
+ - gcc
+ - pkg-config
+ - libncursesw5-dev
+ - libreadline-dev
+ deps:
+ - libncursesw5
+ - libreadline7