]> Sergey Matveev's repositories - nnn.git/commitdiff
Happy Birthday nnn! v4.8
authorArun Prakash Jana <engineerarun@gmail.com>
Thu, 13 Apr 2023 13:07:42 +0000 (18:37 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Thu, 13 Apr 2023 13:07:42 +0000 (18:37 +0530)
Prepare for release v4.8 Spritz!

CHANGELOG
misc/haiku/nnn.rdef
nnn.1
src/nnn.c

index 1c7ee04e124799975ee8b753d74a5c94845740d8..53726b8be3da9e4682606bfd97e02fe63de14fa5 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,28 @@
+nnn v4.8 Spritz
+2023-04-13
+
+- show total size (key <kbd>S</kbd>) of non-filtered selection in a directory
+- fix tilde (~) handling in file name
+- plugin `.nmv` now respects `-u` flag
+- env var `$NNN_PREFER_SELECTION` exported to all plugins
+- support for wezterm in `preview-tui`
+- create new file or directory (tree) on startup
+- run command as plugin now supports exported variables
+- use `"$nnn"` anywhere when running command as plugin
+- set defaults for some prompts on <kbd>Enter</kbd>
+- improve archive, rename and create new workflows
+- optimize link creation
+- allow overwriting regular files on new empty file creation
+- add patch for colemak keyboard (existing renamed to colemak-dh)
+- add correct check for Wayland in clipboard plugins
+- add quitcd script for nushell
+- plugin `kdeconnect` - send multiple files
+- plugin `preview-tui`: add `chafa` as preferred image viewer, multiple fixes
+- plugin `nmount` - misc. improvements
+- add icon for jxl files
+
+-------------------------------------------------------------------------------
+
 nnn v4.7 Cuba libre
 2022-11-24
 
index 7a8e992396be748c227b038fe4c5e0ee61e5de79..4eb9a11c08694773c6278bef935b4ba7e4bbdf7f 100644 (file)
@@ -12,7 +12,7 @@ resource app_version {
        middle = 7,
        minor  = 0,
 
-       variety = B_APPV_DEVELOPMENT,
+       variety = B_APPV_FINAL,
        internal = 0,
 
        short_info = "nnn",
diff --git a/nnn.1 b/nnn.1
index cc86bf7cb02f0e885a025bc52627c1a52231e585..572c2e849db789198f56cd32b6f8ce1ca75f75b3 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Nov 24, 2022
+.Dd Apr 13, 2023
 .Dt NNN 1
 .Os
 .Sh NAME
index 6d734813decb3ba150f33abc9d9223de6f1b1315..b3c0f986ff843b80b0e3c349ac70e151cc9de844 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION      "4.7"
+#define VERSION      "4.8"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN