Skip to content

Commit f17911e

Browse files
committed
Prepare for release v3.3
1 parent a02ff64 commit f17911e

File tree

4 files changed

+46
-2
lines changed

4 files changed

+46
-2
lines changed

CHANGELOG

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
nnn v3.3
2+
2020-07-14
3+
4+
- subdir `mounts` for remote and archive mounts
5+
- remove mount point on successful unmount of remote/archive
6+
- show error and prompt user if `cp`/`mv`/`rm` operation fails
7+
- support absolute/relative paths in cp/mv as
8+
- mark current path automatically on archive/remote mount
9+
- mark current path automatically on target file visit in _find and list_ mode
10+
- option `-C` to place HW cursor on hovered for screen readers and braille displays
11+
- option `-u` to use selection (if available) and skip `current/sel` prompt
12+
- key <kbd>Alt+Esc</kbd> to clear filter prompt and redraw
13+
- support <kbd>Esc</kbd> to cancel remove operation
14+
- `gpge` & `gpgd`: encrypt and decrypt with GPG
15+
- `blknew`: create new files and directories in bulk
16+
- `preview-tui`
17+
- unified to support `tmux`/`kitty`/`xterm`/`$TERMINAL`
18+
- auto-determine split orientation based on terminal height and width
19+
- provision to use [`scope.sh`](https://github.com/ranger/ranger/blob/master/ranger/data/scope.sh) and [`pistol`](https://github.com/doronbehar/pistol)
20+
- various other improvements
21+
- `upload`: send to Firefox Send if [`ffsend`](https://github.com/timvisee/ffsend) is found
22+
- `hexview`: add [`hx`](https://github.com/krpors/hx) as alternative hex viewer
23+
- `nuke` and `imgview`: add [`imv`](https://github.com/eXeC64/imv) as alternative image viewer
24+
- add find (with `fd`) and grep (with `rg`) examples in plugins doc
25+
- key <kbd>Esc</kbd> or left click to resend hovered file path to `NNN_FIFO`
26+
- show `+` instead of `s` in status bar on selection
27+
- <kbd>F5</kbd> removed (misfit for toggle hidden), <kbd>^S</kbd> removed (often masked, redundant)
28+
- handle abnormal program termination and remove NNN_PIPE and/or NNN_FIFO
29+
- clear selection after successful batch rename, link creation
30+
- make option `O_CTX8` for 8 contexts (NOT backward compatible with 4 contexts)
31+
- fix issue with child window resize (see #656)
32+
- fix issue with `NNNLVL` on macOS (see #639)
33+
- fix issue with restoring session with du/au enabled
34+
35+
-------------------------------------------------------------------------------
36+
137
nnn v3.2
238
2020-05-26
339

misc/haiku/Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ ifeq ($(O_NOMOUSE),1)
5252
CPPFLAGS += -DNOMOUSE
5353
endif
5454

55+
ifeq ($(O_NOBATCH),1)
56+
CPPFLAGS += -DNOBATCH
57+
endif
58+
59+
ifeq ($(O_NOFIFO),1)
60+
CPPFLAGS += -DNOFIFO
61+
endif
62+
5563
ifeq ($(O_CTX8),1)
5664
CPPFLAGS += -DCTX8
5765
endif

nnn.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.Dd May 26, 2020
1+
.Dd Jul 14, 2020
22
.Dt NNN 1
33
.Os
44
.Sh NAME

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
#include "dbg.h"
114114

115115
/* Macro definitions */
116-
#define VERSION "3.2"
116+
#define VERSION "3.3"
117117
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
118118
#define SESSIONS_VERSION 1
119119

0 commit comments

Comments
 (0)