Skip to content

Commit f6cc2e6

Browse files
committed
Prepare for release v3.5 Freddie
Code named after Freddie Mercury: https://en.wikipedia.org/wiki/Freddie_Mercury
1 parent b528bc7 commit f6cc2e6

File tree

4 files changed

+38
-4
lines changed

4 files changed

+38
-4
lines changed

CHANGELOG

+34
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
nnn v3.5 Freddie
2+
2020-11-17
3+
4+
- compile-in Alexey Tourbin's QSORT macro
5+
- support Nerd Font patched icons [`make O_NERD=1`]
6+
- auto-generate static binaries with icons support
7+
- audit and adapt all plugins for macOS
8+
- enhance plugin `dups` to delete duplicates interactively
9+
- plugin `autojump` now supports `jump` and `zoxide`
10+
- support `gio trash` to Trash [`export NNN_TRASH=2`] (#740)
11+
- quit program on double <kbd>Esc</kbd> in normal mode (#775)
12+
- <kbd>^Space</kbd> replaces <kbd>^K</kbd> for range selection/clear selection
13+
- show selection symbol (`+`) next to filename in detail mode (#741)
14+
- error & quit on <kbd>Q</kbd> if no selection, else pick to stdout
15+
- repeat <kbd>^T</kbd> to cycle sort by time, size and clear
16+
- option `-U` to show user & group info in status bar
17+
- option `-J` to disable auto-proceed on select (#713)
18+
- option `-D` to show dirs in context color with `NNN_FCOLORS`
19+
- honor option `-C` for context colors
20+
- show indicators if more entries above/below listing (#744)
21+
- show missing utility name in flash msg (#753)
22+
- exit `preview-tabbed` on <kbd>^C</kbd> (#727)
23+
- invoke GNU sed (_gsed_) on macOS (#728)
24+
- fix HW cursor moves to wrong line (#735)
25+
- fix rollover bug with multiline scroll (#743)
26+
- fix input stream not listed with `-s`/`-S` (#777)
27+
- fix locker not being invoked
28+
- make target `upx` for additional binary compression
29+
- compress auto-generated static binaries with upx
30+
- make variable `O_NOSSN` to compile out sessions
31+
- make variable `O_NOUG` to compile out user & group info
32+
33+
-------------------------------------------------------------------------------
34+
135
nnn v3.4 Emilia
236
2020-08-18
337

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 = 3,
12-
middle = 4,
12+
middle = 5,
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 Aug 18, 2020
1+
.Dd Nov 17, 2020
22
.Dt NNN 1
33
.Os
44
.Sh NAME

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
#endif
125125

126126
/* Macro definitions */
127-
#define VERSION "3.4"
127+
#define VERSION "3.5"
128128
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
129129

130130
#ifndef NOSSN

0 commit comments

Comments
 (0)