summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2022-04-26 06:18:07 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2022-04-26 18:34:24 +0530
commit3f58f6111c95a38f2bfbdde92c42bf54edeb5927 (patch)
tree90a4a2e48b2db8e17227b1a6dd552a0295ace4b9
parent43662474419fc4fae86041871f33b9be7d8acebb (diff)
Prepare for release v4.5 Cachaçav4.5
-rw-r--r--CHANGELOG32
-rw-r--r--misc/haiku/nnn.rdef4
-rw-r--r--nnn.12
-rw-r--r--src/nnn.c2
4 files changed, 36 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 8bdda3a2..20b76c41 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,35 @@
+nnn v4.5 Cachaça
+2022-04-26
+
+- disable filter info if file details (option `-i`) enabled
+- open previous active context on context quit
+- switch <kbd>^J</kbd> and <kbd>+</kbd> functionality:
+ - <kbd>+</kbd>: toggle file selection
+ - <kbd>^J</kbd>: toggle auto-jump on file open
+- allow symlink creation with name `@` to a single file (#1345)
+- clear selection on successful operation at native prompt with "%j" (#1330)
+- reverse timestamps of entries modified/created within 5 minutes
+- avoid using non-portable `xargs` flags on macOS (#1299)
+- quitcd script for Elvish shell > 0.17.0 (#1344)
+- plugin `openall` to open selected files together (#1333)
+- plugin `gitroot` to jump to git root directory from a subtree
+- plugin `gsconnect` to send the selected files to Android using gsconnect
+- icon for opus and webp files
+- `preview-tui` - fix gif conversion and whitespace name
+- `preview-tui` - add support for windows terminal split
+- `preview-tui` - djvu file previews
+- `nuke` - add support for `imv` when named _imv_
+- `gsconnect` - support connection to multiple devices
+- export `NNN_INCLUDE_HIDDEN` to plugins (#1308)
+- respect `NNN_TRASH` in `.nmv` (#1306)
+- add GNU sed as a dependency with support for env var `SED`
+- use bold `>` to point at current entry in detail mode
+- add 2 spaces after icons for better visibility
+- documentation refresh
+- make option `O_NOSORT` to load directories unsorted on entry
+
+-------------------------------------------------------------------------------
+
nnn v4.4 Tequila
2021-11-23
diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef
index ab070910..7e029fdf 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 = 4,
+ middle = 5,
minor = 0,
- variety = B_APPV_DEVELOPMENT,
+ variety = B_APPV_FINAL,
internal = 0,
short_info = "nnn",
diff --git a/nnn.1 b/nnn.1
index e7d0f0d3..ebd1dd9e 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Nov 23, 2021
+.Dd Apr 26, 2022
.Dt NNN 1
.Os
.Sh NAME
diff --git a/src/nnn.c b/src/nnn.c
index 508ee915..d47e47a9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -134,7 +134,7 @@
#endif
/* Macro definitions */
-#define VERSION "4.4"
+#define VERSION "4.5"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
#ifndef NOSSN