From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Sun, 27 Aug 2023 04:25:13 +0000 (+0530)
Subject: Prepare for release v4.9 Elixir
X-Git-Tag: v4.9^0
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=33126ee813ed92726aa66295b9771ffe93e7ff0a;p=nnn.git

Prepare for release v4.9 Elixir
---

diff --git a/CHANGELOG b/CHANGELOG
index 53726b8b..9b19944b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,23 @@
+nnn v4.9 Elixir
+2023-08-27
+
+- config option `NNN_ARCHMNT` to specify archive mounter utility
+- key <kbd>^y</kbd> to jump to next young file
+- filter adjustment when opening context from plugin
+- properly update mode after `chmod`
+- pre-fill selected file name to create link if sel is preferred over hovered
+- fix crash when `PWD` is empty
+- make `quitcd.bash_zsh` POSIX-compliant
+- `nmount` - support `udiskctl` as default
+- `preview-tui` - support wezterm split size percentage
+- `preview-tui` - move to bash for environment manipulation through arrays
+- `fzopen` - handle empty selection
+- `finder` - use default path to find
+- add icons for `djvu` files
+- support Nerd Fonts v3.0.0 and above (older versions are broken by v3.0.0)
+
+-------------------------------------------------------------------------------
+
 nnn v4.8 Spritz
 2023-04-13
 
diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef
index 7a8e9923..77140358 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 = 7,
+	middle = 9,
 	minor  = 0,
 
-	variety = B_APPV_DEVELOPMENT,
+	variety = B_APPV_FINAL,
 	internal = 0,
 
 	short_info = "nnn",
diff --git a/nnn.1 b/nnn.1
index e401628d..0dd3eaeb 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Apr 13, 2023
+.Dd Aug 27, 2023
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/src/nnn.c b/src/nnn.c
index 3cddd659..21a7370b 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -148,7 +148,7 @@
 #endif
 
 /* Macro definitions */
-#define VERSION      "4.8"
+#define VERSION      "4.9"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN