]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v2.2
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 1 Jan 2019 02:31:48 +0000 (08:01 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 1 Jan 2019 02:31:48 +0000 (08:01 +0530)
CHANGELOG
LICENSE
Makefile
README.md
nnn.1
packagecore.yaml
scripts/natool/natool
scripts/nlay/nlay
src/nnn.c
src/nnn.h

index c532689ebe5d737effd8ae524ca39ba24a118a82..e9b5771085f22f235d026b18bd34aa85d1055865 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+nnn v2.2
+2019-01-01
+
+What's in?
+- (neo)vim plugin [nnn.vim](github.com/mcchrish/nnn.vim)
+- macOS fixes
+  - Fix issues with file copy, move, remove
+  - Handle <kbd>Del</kbd> in rename prompt
+  - Pass correct `file` option to identify mime
+- Support selection across directories and contexts
+- Offer option `force` before file remove
+- Keys <kbd>Tab</kbd>, <kbd>^I</kbd> to go to next active context
+- Per-context directory color specified by `$NNN_CONTEXT_COLORS`
+  - Option `-c` is removed
+- Option `-C` to disable colors
+- Choose script to run from a script directory
+- Run a command (or launch an application)
+- Run file as executable <kbd>C</kbd>
+- Documentation on lftp integration for remote file transfers
+- Support a _combined_ set of arguments to `$EDITOR`, `$PAGER` and `$SHELL`
+- Handle > 2 GB files on 32-bit ARM
+- Env var `$DISABLE_FILE_OPEN_ON_NAV` to disable file open on <kbd>Right</kbd> or <kbd>l</kbd>
+- `NUL`-terminated file paths in selection list instead of `LF`
+- Better support for Termux and Cygwin environments
+- Remapped keys
+  - <kbd>^I</kbd> - go to next active context
+  - <kbd>^T</kbd> - toggle _navigate-as-you-type_
+
+-------------------------------------------------------------------------------
+
 nnn v2.1
 2018-11-23
 
diff --git a/LICENSE b/LICENSE
index e933c45245a2a2e34c3d9df64f71f099c78314bc..65bba60715eab0cfe49a854813a7b9e690fab4b1 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -2,7 +2,7 @@ BSD 2-Clause License
 
 Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
 Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
-Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
+Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
index e5b645e0810727bfe2e78b27f95610685b6d8763..c975dcebd9239c823e6d579c24d4b0aff6cd6449 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.1
+VERSION = 2.2
 
 PREFIX ?= /usr/local
 MANPREFIX ?= $(PREFIX)/share/man
index a43f52aff89dbbe8083de69c83ef902cc9e0eac6..aba235c6c4b1ef80704367cd0edcbbfbbed9cd63 100644 (file)
--- a/README.md
+++ b/README.md
@@ -557,4 +557,4 @@ To open files with this setting, press <kbd>Enter</kbd>.
 
 1. Copyright © 2014-2016 Lazaros Koromilas
 2. Copyright © 2014-2016 Dimitris Papastamos
-3. Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
+3. Copyright © 2016-2019 [Arun Prakash Jana](https://github.com/jarun)
diff --git a/nnn.1 b/nnn.1
index e3c45758666bd96ee1704965782c394ab68e60b3..62bb162552d09fad26196dbcf3fc928075246755 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Nov 23, 2018
+.Dd Jan 01, 2019
 .Dt NNN 1
 .Os
 .Sh NAME
index 4f201711b69aa688d95d18672222fc9a48762a9d..ebf123686e05875af5100299e3ebcd9049708ca5 100644 (file)
@@ -88,6 +88,14 @@ packages:
       - ncurses-devel
     deps:
       - ncurses
+  fedora29:
+    builddeps:
+      - make
+      - gcc
+      - pkg-config
+      - ncurses-devel
+    deps:
+      - ncurses
 #  opensuse42.3:
 #    builddeps:
 #      - make
index dd08d54889b3f5a632771c78d1b02998cf827205..65e0be51f3ebea37d4cf6beec803a5917e727e10 100755 (executable)
@@ -17,7 +17,7 @@
 # Author: Arun Prakash Jana
 # Email: engineerarun@gmail.com
 # Homepage: https://github.com/jarun/nnn
-# Copyright © 2018 Arun Prakash Jana
+# Copyright © 2019 Arun Prakash Jana
 # #############################################################################
 
 import sys
index 26e823fae7d56776293f6ff65bcde41191e3db2c..b3d587fbe43d910840437baa84109a6b5cd6a727 100755 (executable)
@@ -28,7 +28,7 @@
 # Author: Arun Prakash Jana
 # Email: engineerarun@gmail.com
 # Homepage: https://github.com/jarun/nnn
-# Copyright © 2016-2018 Arun Prakash Jana
+# Copyright © 2016-2019 Arun Prakash Jana
 # #############################################################################
 
 
index 400ecc9926acf641b02d7e2ea13a9f893ccc99e1..c018c46e94b97e14b084dd7839f185d538144ccc 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
  * Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
- * Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
+ * Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -156,7 +156,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "2.1"
+#define VERSION "2.2"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
index 2e1a5a08cd33ff217bc5eacafa32fc60018ae927..e52986b62367d6833d641e4639d3a3a1872018c0 100644 (file)
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
  * Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
- * Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
+ * Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without