Skip to content

Commit bf67374

Browse files
committed
Prepare for release v4.1 Sake
Sake - https://en.wikipedia.org/wiki/Sake
1 parent 93e7995 commit bf67374

File tree

6 files changed

+63
-13
lines changed

6 files changed

+63
-13
lines changed

.circleci/config.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ workflows:
119119
- master
120120
jobs: *all-tests
121121

122-
publish-github-release:
123-
jobs:
124-
- package-and-publish:
125-
filters:
126-
tags:
127-
only: /^v.*/
128-
branches:
129-
ignore: /.*/
122+
# publish-github-release:
123+
# jobs:
124+
# - package-and-publish:
125+
# filters:
126+
# tags:
127+
# only: /^v.*/
128+
# branches:
129+
# ignore: /.*/

CHANGELOG

+50
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
nnn v4.1 Sake
2+
2021-06-02
3+
4+
- a patch management model for approved patches
5+
- multi-threaded disk usage calculation using pthreads and FTS
6+
- dynamic view update when calculating disk usage
7+
- <kbd>Bksp</kbd>/<kbd>Del</kbd> at empty filter prompt to refresh dir
8+
- Try to create new context with <kbd>Shift-TAB</kbd>, else reverse cycle
9+
- <kbd>Alt+Esc</kbd> to quit context from filter prompt
10+
- fix zombies left behind after running plugins (#999)
11+
- named persistent sessions (mcchrish/nnn.vim#43)
12+
- consider nanosecond resolution when sorting by time (#978)
13+
- check external selection in `'c'urrent / 's'el` prompt (#976)
14+
- show number of files selected in local selection buffer, if any
15+
- `nnn` & picker plugin (e.g. `fzopen`) sync (mcchrish/nnn.vim#82)
16+
- make batch rename interactive (#971)
17+
- cached uid/gid for performance improvement
18+
- fixes for `nnn` with `netbsd-curses`, `musl-fts`, `musl` (#998)
19+
- script to statically compile `nnn` with `musl gcc` on Ubuntu
20+
- restore hovered file when plugin is chosen from plugin dir
21+
- support QuickLook on WSL in `preview-tui` (#959)
22+
- toggle `preview-tui` with the same _custom_ plugin key
23+
- smoother preview toggling in `preview-tui` (#966)
24+
- `listen_on` should be set in kitty.conf for `preview-tui` (#970)
25+
- minimal `bat` style in `preview-tui`, honors `$BAT_STYLE`
26+
- plugin `preview-tui-ext` supersedes `preview-tui` (#1033)
27+
- plugin `fzcd` can now fuzzy search multiple directories
28+
- plugin `imgview` supersedes `imgthumb` and `vidthumb`
29+
- plugin `umounttree`: unmount remote mntpoint from within
30+
- plugin `xdgdefault`: set the default app for hovered file type
31+
- plugin `fzplug`: fuzzy find, preview and run other plugins
32+
- plugin `cmusq`: queue/play music in `cmus`
33+
- plugin `mocplay` renamed to `mocq`
34+
- plugin `cleanfilename` renamed to `fixname`
35+
- go to last dir on <kbd>~</kbd> (HOME) or <kbd>`</kbd> (ROOT) key repeat
36+
- ambiguous key <kbd>^Space</kbd> to select/clear range dropped (#998)
37+
- user wiki page for [Themes](https://github.com/jarun/nnn/wiki/Themes)
38+
- show selection mark (`+`) in reverse bold for improved visibility
39+
- reverse block replaces `>` to mark hovered entry in detail mode
40+
- make option `O_CKBOARD` removed
41+
- make option `O_NOLOC` renamed to `O_NOLC`
42+
- ignore `O_NOLC` if `O_ICONS` or `O_NERD` is specified (#1026)
43+
- unicode arrow indicators if `O_ICONS` or `O_NERD` is specified
44+
- make option `NOX11`: disable notis, sel-clipboard sync, xterm title
45+
- retain filter in _nav-to-type_ mode after file open
46+
- fix no files picked with `NNN_TMPFILE` exported and <kbd>q</kbd> to quit
47+
- disable xterm title setting in picker mode (#974)
48+
49+
-------------------------------------------------------------------------------
50+
151
nnn v4.0 Sushi
252
2021-04-13
353

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,4 @@ Don't memorize! Arrows, <kbd>/</kbd>, <kbd>q</kbd> suffice. <kbd>Tab</kbd> creat
160160
- [Sijmen J. Mulder](https://github.com/sjmulder)
161161
- and other contributors
162162

163-
Visit the [ToDo list](https://github.com/jarun/nnn/issues/1022) to contribute or see the features in progress.
163+
Visit the [ToDo list](https://github.com/jarun/nnn/issues/1040) to contribute or see the features in progress.

misc/haiku/nnn.rdef

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
99

1010
resource app_version {
1111
major = 4,
12-
middle = 0,
12+
middle = 1,
1313
minor = 0,
1414

15-
variety = B_APPV_DEVELOPMENT,
15+
variety = B_APPV_FINAL,
1616
internal = 0,
1717

1818
short_info = "nnn",

nnn.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.Dd Apr 13, 2021
1+
.Dd Jun 02, 2021
22
.Dt NNN 1
33
.Os
44
.Sh NAME

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
#endif
129129

130130
/* Macro definitions */
131-
#define VERSION "4.0"
131+
#define VERSION "4.1"
132132
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
133133

134134
#ifndef NOSSN

0 commit comments

Comments
 (0)