]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.3
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 19 Feb 2019 10:26:48 +0000 (15:56 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 19 Feb 2019 10:38:37 +0000 (16:08 +0530)
.travis.yml
CHANGELOG
Makefile
nnn.1
src/nnn.c
user-scripts/copier.sh [moved from scripts/user-scripts/copier.sh with 100% similarity]
user-scripts/edit.sh [moved from scripts/user-scripts/edit.sh with 100% similarity]
user-scripts/fzy.sh [moved from scripts/user-scripts/fzy.sh with 100% similarity]
user-scripts/picker.sh [moved from scripts/user-scripts/picker.sh with 100% similarity]
user-scripts/sxiv.sh [moved from scripts/user-scripts/sxiv.sh with 100% similarity]
user-scripts/upgrade.sh [moved from scripts/user-scripts/upgrade.sh with 100% similarity]

index 11c47bed182571bd49cc08034acb63db08b1c5e9..304c81e4691125f3ad6580accfcd4162af9f74af 100644 (file)
@@ -38,7 +38,7 @@ before_deploy:
   - sudo apt-get update -qy
   - sudo apt-get install -qy python3 python3-pip
   - sudo python3 -m pip install --upgrade pip
-  - sudo python3 -m pip install --upgrade packagecore setuptools
+  - sudo python3 -m pip install --upgrade packagecore python3-setuptools
   - packagecore -o dist/ "${TRAVIS_TAG#v}"
   - mv ../$REPO-${TRAVIS_TAG}.tar.gz dist/
 
index 1b61b3352b2ae3ade0301594cc810a4e8d857f97..698bfad8b05eeabee182fb8d3ce7bd3f68a423c7 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+nnn v2.3
+2019-02-19
+
+- file picker mode
+- repo of user-contributed scripts
+- substring search for filters (option `-s`)
+- version sort (option `-n`)
+- disk usage calculation abort with <kbd>^C</kbd>
+- create sym/hard link(s) to files in selection
+- archiving of selection
+- show dir symlinks along with dirs in top
+- fixed CJK character handling at prompts
+- key `N` (1 <= N <= 4) to switch to context N
+- bring back `NNN_OPENER` to specify file opener
+- env var `NNN_NOTE` and keybind <kbd>^N</kbd> for quick notes
+- handle multiple arguments in VISUAL/EDITOR
+- show the current directory being scanned in `du` mode
+- select all files (<kbd>Y</kbd>)
+- show command prompt (<kbd>^P</kbd>)
+- key <kbd>,</kbd> replaces <kbd>`</kbd> as alternative Leader Key
+- keybind for visit pinned directory is now <kbd>^B</kbd>
+- additional key <kbd>^V</kbd> to run or select custom script
+- use libreadline for command prompt
+- reduce delay on <kbd>Esc</kbd> press
+- config option to avoid unexpected behaviour on 0-byte file open (see #187)
+- rename config option `DISABLE_FILE_OPEN_ON_NAV` to `NNN_RESTRICT_NAV_OPEN`
+- keys removed - <kbd>$</kbd>, <kbd>^</kbd>, <kbd>Backspace</kbd>, <kbd>^H</kbd>, <kbd>^P</kbd>, <kbd>^M</kbd>, <kbd>^W</kbd>, <kbd>`</kbd>
+
+-------------------------------------------------------------------------------
+
 nnn v2.2
 2019-01-01
 
index a88b28a5d3e9a7d992b71f3c7b86f67bc54e93bd..fffb0eb5bb9e0497db3944df1d666da866b5ae45 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.2
+VERSION = 2.3
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index df93891c60844a18487ad07d0951a7044983a2d5..49a3e4236bc55e730e0537324ca29abef3eaca66 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Jan 01, 2019
+.Dd Feb 19, 2019
 .Dt NNN 1
 .Os
 .Sh NAME
index 6ab73549f4960641d3fb778c02639acf6ea6d163..bcfb5ec6b806b29e38a42fb24a75ff1e4363f0b4 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -161,7 +161,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "2.2"
+#define VERSION "2.3"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #define LEN(x) (sizeof(x) / sizeof(*(x)))