]> Sergey Matveev's repositories - nnn.git/commitdiff
Prepare for release v4.1 Sake v4.1
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 2 Jun 2021 05:14:41 +0000 (10:44 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 2 Jun 2021 05:14:41 +0000 (10:44 +0530)
Sake - https://en.wikipedia.org/wiki/Sake

.circleci/config.yml
CHANGELOG
README.md
misc/haiku/nnn.rdef
nnn.1
src/nnn.c

index 9e1494840e477ab11dace633769df7e72daf716a..fba84c6ab4e21c68b4ec1263a5fe11089eb668af 100644 (file)
@@ -119,11 +119,11 @@ workflows:
                 - master
     jobs: *all-tests
 
-  publish-github-release:
-    jobs:
-      - package-and-publish:
-          filters:
-            tags:
-              only: /^v.*/
-            branches:
-              ignore: /.*/
+#  publish-github-release:
+#    jobs:
+#      - package-and-publish:
+#          filters:
+#            tags:
+#              only: /^v.*/
+#            branches:
+#              ignore: /.*/
index f1618ecbc87efa69d0d495cc7de13a790f89d36a..2008cf828cd9383721f7934c150cf2d14dbf0a87 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,53 @@
+nnn v4.1 Sake
+2021-06-02
+
+- a patch management model for approved patches
+- multi-threaded disk usage calculation using pthreads and FTS
+- dynamic view update when calculating disk usage
+- <kbd>Bksp</kbd>/<kbd>Del</kbd> at empty filter prompt to refresh dir
+- Try to create new context with <kbd>Shift-TAB</kbd>, else reverse cycle
+- <kbd>Alt+Esc</kbd> to quit context from filter prompt
+- fix zombies left behind after running plugins (#999)
+- named persistent sessions (mcchrish/nnn.vim#43)
+- consider nanosecond resolution when sorting by time (#978)
+- check external selection in `'c'urrent / 's'el` prompt (#976)
+- show number of files selected in local selection buffer, if any
+- `nnn` & picker plugin (e.g. `fzopen`) sync (mcchrish/nnn.vim#82)
+- make batch rename interactive (#971)
+- cached uid/gid for performance improvement
+- fixes for `nnn` with `netbsd-curses`, `musl-fts`, `musl` (#998)
+- script to statically compile `nnn` with `musl gcc` on Ubuntu
+- restore hovered file when plugin is chosen from plugin dir
+- support QuickLook on WSL in `preview-tui` (#959)
+- toggle `preview-tui` with the same _custom_ plugin key
+- smoother preview toggling in `preview-tui` (#966)
+- `listen_on` should be set in kitty.conf for `preview-tui` (#970)
+- minimal `bat` style in `preview-tui`, honors `$BAT_STYLE`
+- plugin `preview-tui-ext` supersedes `preview-tui` (#1033)
+- plugin `fzcd` can now fuzzy search multiple directories
+- plugin `imgview` supersedes `imgthumb` and `vidthumb`
+- plugin `umounttree`: unmount remote mntpoint from within
+- plugin `xdgdefault`: set the default app for hovered file type
+- plugin `fzplug`: fuzzy find, preview and run other plugins
+- plugin `cmusq`: queue/play music in `cmus`
+- plugin `mocplay` renamed to `mocq`
+- plugin `cleanfilename` renamed to `fixname`
+- go to last dir on <kbd>~</kbd> (HOME) or <kbd>`</kbd> (ROOT) key repeat
+- ambiguous key <kbd>^Space</kbd> to select/clear range dropped (#998)
+- user wiki page for [Themes](https://github.com/jarun/nnn/wiki/Themes)
+- show selection mark (`+`) in reverse bold for improved visibility
+- reverse block replaces `>` to mark hovered entry in detail mode
+- make option `O_CKBOARD` removed
+- make option `O_NOLOC` renamed to `O_NOLC`
+- ignore `O_NOLC` if `O_ICONS` or `O_NERD` is specified (#1026)
+- unicode arrow indicators if `O_ICONS` or `O_NERD` is specified
+- make option `NOX11`: disable notis, sel-clipboard sync, xterm title
+- retain filter in _nav-to-type_ mode after file open
+- fix no files picked with `NNN_TMPFILE` exported and <kbd>q</kbd> to quit
+- disable xterm title setting in picker mode (#974)
+
+-------------------------------------------------------------------------------
+
 nnn v4.0 Sushi
 2021-04-13
 
index ba28ce1287e36f119be91a051a683fb508a428d7..f74f6a46ae1e7180355a519a682704be3c116fed 100644 (file)
--- a/README.md
+++ b/README.md
@@ -160,4 +160,4 @@ Don't memorize! Arrows, <kbd>/</kbd>, <kbd>q</kbd> suffice. <kbd>Tab</kbd> creat
 - [Sijmen J. Mulder](https://github.com/sjmulder)
 - and other contributors
 
-Visit the [ToDo list](https://github.com/jarun/nnn/issues/1022) to contribute or see the features in progress.
+Visit the [ToDo list](https://github.com/jarun/nnn/issues/1040) to contribute or see the features in progress.
index a0a1f40215dc44aaf8eca1b7b996306421040fda..ebf8a559cf747a817e351e7207c5b12f2dc8e939 100644 (file)
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
 
 resource app_version {
        major  = 4,
-       middle = 0,
+       middle = 1,
        minor  = 0,
 
-       variety = B_APPV_DEVELOPMENT,
+       variety = B_APPV_FINAL,
        internal = 0,
 
        short_info = "nnn",
diff --git a/nnn.1 b/nnn.1
index e7276d110153cb1aa67ccd663f0fb9385440058a..1b3b400d5c567e30b86751f30cf1708d17660a3b 100644 (file)
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Apr 13, 2021
+.Dd Jun 02, 2021
 .Dt NNN 1
 .Os
 .Sh NAME
index 562622fa162ed972f528ce96474e0e7b6fc7a469..d83d7f6b331cc44fd454f562d858d674b3dd1609 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
 #endif
 
 /* Macro definitions */
-#define VERSION "4.0"
+#define VERSION "4.1"
 #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
 
 #ifndef NOSSN