]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v3.5 Freddie v3.5
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 17 Nov 2020 02:49:09 +0000 (08:19 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 17 Nov 2020 02:49:09 +0000 (08:19 +0530)
Code named after Freddie Mercury: https://en.wikipedia.org/wiki/Freddie_Mercury

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

index c3c7b17dddb5f39dd2116710b7f81bb1a5318584..64b0e958b3a0f6c3ed06fe64803b92a42c959998 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,37 @@
+nnn v3.5 Freddie
+2020-11-17
+
+- compile-in Alexey Tourbin's QSORT macro
+- support Nerd Font patched icons [`make O_NERD=1`]
+- auto-generate static binaries with icons support
+- audit and adapt all plugins for macOS
+- enhance plugin `dups` to delete duplicates interactively
+- plugin `autojump` now supports `jump` and `zoxide`
+- support `gio trash` to Trash [`export NNN_TRASH=2`] (#740)
+- quit program on double <kbd>Esc</kbd> in normal mode (#775)
+- <kbd>^Space</kbd> replaces <kbd>^K</kbd> for range selection/clear selection
+- show selection symbol (`+`) next to filename in detail mode (#741)
+- error & quit on <kbd>Q</kbd> if no selection, else pick to stdout
+- repeat <kbd>^T</kbd> to cycle sort by time, size and clear
+- option `-U` to show user & group info in status bar
+- option `-J` to disable auto-proceed on select (#713)
+- option `-D` to show dirs in context color with `NNN_FCOLORS`
+- honor option `-C` for context colors
+- show indicators if more entries above/below listing (#744)
+- show missing utility name in flash msg (#753)
+- exit `preview-tabbed` on <kbd>^C</kbd> (#727)
+- invoke GNU sed (_gsed_) on macOS (#728)
+- fix HW cursor moves to wrong line (#735)
+- fix rollover bug with multiline scroll (#743)
+- fix input stream not listed with `-s`/`-S` (#777)
+- fix locker not being invoked
+- make target `upx` for additional binary compression
+- compress auto-generated static binaries with upx
+- make variable `O_NOSSN` to compile out sessions
+- make variable `O_NOUG` to compile out user & group info
+
+-------------------------------------------------------------------------------
+
 nnn v3.4 Emilia
 2020-08-18
 
index 220a2680921af329cdec9d9904061e2210afab1e..77694004296675fb2cc91121e245199f366cfb26 100644 (file)
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
 
 resource app_version {
        major  = 3,
-       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 8a0cac2ac2778bb9cdd164d0431e749dccfe61b7..1a752fa77ee283c0105ecaa6d43d18e6b00ab497 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Aug 18, 2020
+.Dd Nov 17, 2020
 .Dt NNN 1
 .Os
 .Sh NAME
index 1c150bc55e5ae1f2b9a5e3041cf4085ea3748ee0..af494b991f4d1f7c2e1f7d462feaad5d5766c587 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION "3.4"
+#define VERSION "3.5"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN