]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.1
authorArun Prakash Jana <engineerarun@gmail.com>
Fri, 23 Nov 2018 11:06:39 +0000 (16:36 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Fri, 23 Nov 2018 11:06:39 +0000 (16:36 +0530)
CHANGELOG
Makefile
README.md
nnn.1
src/nnn.c

index 2b76fa06e82ae5b42416df267f854c3b62ab331d..c532689ebe5d737effd8ae524ca39ba24a118a82 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,29 @@
+nnn v2.1
+2018-11-23
+
+What's in?
+- Inclusion in several distros including Arch Linux official repo
+- Multiple contexts (_aka_ tabs _aka_ workspaces) [max 4]
+- Copy, move, remove selected files, remove current file
+- [Leader key](https://github.com/jarun/nnn#leader-key) (like vim)
+- In-built  GUI app launcher with up to 2 arguments (key <kbd>o</kbd>)
+- List copy selection (key <kbd>y</kbd>)
+- Env var `NNN_NO_AUTOSELECT` to disable dir auto-select
+- Key <kbd>Esc</kbd> exits prompt, <kbd>^L</kbd> clears prompt
+- Program runtime help revamped
+- Static code analysis integration
+- gcc-8 warnings fixed
+- Remapped keys:
+  - <kbd>^W</kbd> - go to pinned dir
+  - <kbd>^X</kbd> - delete current entry
+  - <kbd>^Q</kbd> - quit program
+- `nlay` is retired (functionality built into `nnn`)
+- `chdir` prompt is retired
+- Env var `NNN_NO_X` retired, selection now works out of the box
+- Only single-char bookmark keys (to work with Leader key)
+
+-------------------------------------------------------------------------------
+
 nnn v2.0
 2018-10-19
 
index 4d705649d1a4f0bad72e340df9f2902f0c02b173..b1f1af164eed1c29368a95818a79dd192044bce8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.0
+VERSION = 2.1
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
index 7c179b8dae58eca2bbc7b4aa82d30af4b293bdbf..9b1e1a1a94163bd75e141de9628ebbce0940f8b7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,7 +32,6 @@ It runs on Linux, OS X, Raspberry Pi, Cygwin, Linux subsystem for Windows and Te
 *Love smart and efficient utilities? Explore [my repositories](https://github.com/jarun?tab=repositories). Buy me a cup of coffee if they help you.*
 
 <p align="center">
-<a href="https://saythanks.io/to/jarun"><img src="https://img.shields.io/badge/say-thanks!-ff69b4.svg" /></a>
 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q"><img src="https://img.shields.io/badge/PayPal-donate-green.svg" alt="Donate via PayPal!" /></a>
 </p>
 
diff --git a/nnn.1 b/nnn.1
index e3137fec850442dbedc82f8371ae1c8fe524bbbd..5775046fefa02eddc598a33b11ed68158add2fb7 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Oct 19, 2018
+.Dd Nov 23, 2018
 .Dt NNN 1
 .Os
 .Sh NAME
index 37e00116262ea8d0226926d9c2cc161985d07331..e8cd7d0d01aa3223bece3a3bd2f5c664bc300cee 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -156,7 +156,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "2.0"
+#define VERSION "2.1"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 
 #define LEN(x) (sizeof(x) / sizeof(*(x)))