summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2021-11-23 18:33:45 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2021-11-23 18:33:45 +0530
commit65eddfe7b9f02f685145005a8ffd3feb8d102ced (patch)
tree6ca0e6b28f4b37fe820833d158b6336ec94fb240
parent2f986253e4e29bc393644bcfad674e097c63d8c1 (diff)
Prepare for release v4.4 Tequilav4.4
-rw-r--r--CHANGELOG30
-rw-r--r--misc/haiku/nnn.rdef4
-rw-r--r--nnn.12
-rw-r--r--src/nnn.c2
4 files changed, 34 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e4225f3b..8bdda3a2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+nnn v4.4 Tequila
+2021-11-23
+
+- support macOS iterm2 in plugin preview-tui (#1196)
+- use selection at native command prompt with `%j` and `%J`
+ - docs - https://github.com/jarun/nnn/wiki/concepts#special-variables
+- scroll strings longer than columns in rename/new prompts (#1213, #279)
+- batch rename symlink targets in listing mode (#1214)
+- option for recursive rename in plugin .nmv (#1186)
+- more frequent checks for cancellation during du (#1236)
+- picker mode: enable auto-proceed
+- picker mode: don't pick hovered file on <kbd>Enter</kbd> if selection exists
+- picker mode: fix issue in plugin `fzopen` when used to pick files
+- send file to explorer FIFO on double left click instead of opening it
+- new neovim plugin [nnn.nvim](https://github.com/luukvbaal/nnn.nvim)
+ - nvim-only, featuring explorer mode (`-F` flag)
+- explorer mode for [nnn.vim](https://github.com/mcchrish/nnn.vim#explorer)
+- remove option `-w`: always place HW cursor on current entry
+- accept link name when linking a single target (#1201)
+- option `-i` to show current file information in info bar
+- force GNU sed on *BSD and Solaris
+- add `nsxiv` support to nuke, preview-tabbed and imgview (#1230)
+- fix preview-tui without `-a` (#1208)
+- pass `pts` in env var for preview-tui to use in `tput` (#1235)
+- disable editing file in picker mode (#1183)
+- save session in picker mode (#1190)
+- use nerd icons for gitstatus patch (#1220)
+
+-------------------------------------------------------------------------------
+
nnn v4.3 Martini
2021-09-29
diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef
index 445e2019..776e1e41 100644
--- a/misc/haiku/nnn.rdef
+++ b/misc/haiku/nnn.rdef
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
resource app_version {
major = 4,
- middle = 3,
+ middle = 4,
minor = 0,
- variety = B_APPV_DEVELOPMENT,
+ variety = B_APPV_FINAL,
internal = 0,
short_info = "nnn",
diff --git a/nnn.1 b/nnn.1
index 0e4c21b3..ba1ac8f5 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Sep 29, 2021
+.Dd Nov 23, 2021
.Dt NNN 1
.Os
.Sh NAME
diff --git a/src/nnn.c b/src/nnn.c
index f8ab2d52..1f020087 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -134,7 +134,7 @@
#endif
/* Macro definitions */
-#define VERSION "4.3"
+#define VERSION "4.4"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
#ifndef NOSSN