Skip to content

Commit bc5b39d

Browse files
committed
Prepare for release v4.2 Mojito
1 parent 14663b9 commit bc5b39d

File tree

4 files changed

+48
-5
lines changed

4 files changed

+48
-5
lines changed

CHANGELOG

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
nnn v4.2 Mojito
2+
2021-07-21
3+
4+
- `NNN_PLUG` indicator symbol interpretation has **changed**:
5+
- `!` - _run-cmd-as-plugin_ (earlier `_`)
6+
- `&` - _run-gui-cmd-as-plugin_ (earlier `|`)
7+
- `|` (new) - page noninteractive _run-cmd-as-plugin_ output
8+
- persistent selection markers (#1086)
9+
- option _extract to..._ for archives
10+
- mount remote and mount/extract archive to a smart context
11+
- confirm file trashing to avoid accidental press of <kbd>x</kbd> (#1101)
12+
- insert the last command executed at prompt on <kbd>Up</kbd> or <kbd>Down</kbd>
13+
- insert the current file name at empty prompt on <kbd>TAB</kbd>
14+
- handle redraw issue on missed `KEY_RESIZE` (#1067)
15+
- add force-tty capability to spawn and set pagers to it (#1064)
16+
- clear selection mode on deselecting last selected file (#1098)
17+
- remove selected hovered entry from selection on deletion
18+
- disable filtering in empty directories
19+
- ignore last pressed filter character when no matches
20+
- fix broken screen on resize while paging (#1072)
21+
- fix archive not hovered on creation
22+
- remove libgit2 dependency in `gitstatus` patch (#1095)
23+
- add `-G` flag for `gitstatus` patch
24+
- option `-X` for explorer (persistent picker) mode
25+
- option `-F` decommissioned in favour of config `NNN_HELP`
26+
- `-F` redefined to multiplex `NNN_FIFO` to preview or explore
27+
- support paging noninterative _run-cmd-as-plugin_ output
28+
- `nuke` - add option to execute binaries (#1111)
29+
- plugin `fzopen` - call `open` on macOS, add option to use `nuke`
30+
- plugin `fzcd` will not modify selection
31+
- plugin `suedit` - preserve environment
32+
- several `preview-tui` fixes
33+
- plugin `wall` renamed to `wallpaper`
34+
- remove plugin `fzz` - merged into plugin `autojump`
35+
- remove plugin `upgrade` - packaging is on OBS now
36+
- remove plugin `treeview` - needs minor `preview-tui` tweak
37+
- remove plugin `picker` - `nnn -p -` does the same
38+
- remove plugin `pdfview` - needs simple change in `pdfread`
39+
- remove plugin `uidgid` - use program option `-U`
40+
- remove plugins `mediainf`, `hexview` - simple one-liners
41+
42+
-------------------------------------------------------------------------------
43+
144
nnn v4.1.1 Sake
245
2021-06-03
346

misc/haiku/nnn.rdef

+3-3
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 = 1,
13-
minor = 1,
12+
middle = 2,
13+
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 Jun 03, 2021
1+
.Dd Jul 21, 2021
22
.Dt NNN 1
33
.Os
44
.Sh NAME

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
#endif
131131

132132
/* Macro definitions */
133-
#define VERSION "4.1.1"
133+
#define VERSION "4.2"
134134
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
135135

136136
#ifndef NOSSN

0 commit comments

Comments
 (0)