Skip to content

Commit 9c20f43

Browse files
committed
Prepare for release v3.4
1 parent 551e9ca commit 9c20f43

File tree

5 files changed

+31
-39
lines changed

5 files changed

+31
-39
lines changed

CHANGELOG

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
nnn v3.4
2+
2020-08-18
3+
4+
- icons with icon-specific colors (thanks @KlzXS)
5+
- enhanced `NNN_COLORS` with xterm 256 colors support
6+
- new colorscheme with `NNN_FCOLORS` (file type specific colors)
7+
- switch `-C` to force earlier colorscheme (dirs follow context color)
8+
- updates for Haiku (thanks @CodeforEvolution)
9+
- fix XFS navigation issue (thanks @ucs1)
10+
- optimize archive extension matching on file open
11+
- show location in context color
12+
- support `host[:dir]` format for remote mounts
13+
- clear selection after copy
14+
- support traversal on file/dir creation
15+
- show selection in reverse in status bar
16+
- show status bar indicator `H` when hidden files are listed
17+
- show and confirm archive command output
18+
- support _cd on quit_ in picker mode
19+
20+
-------------------------------------------------------------------------------
21+
122
nnn v3.3
223
2020-07-14
324

misc/haiku/nnn.rdef

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ resource app_version {
1212
middle = 4,
1313
minor = 0,
1414

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

1818
short_info = "nnn",

misc/packagecore/packagecore.yaml

+7-36
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ commands:
77
install:
88
- make PREFIX="/usr" strip install DESTDIR="${BP_DESTDIR}"
99
packages:
10-
archlinux:
11-
builddeps:
12-
- make
13-
- gcc
14-
- pkg-config
15-
deps:
16-
- ncurses
17-
- readline
18-
container: "archlinux/base"
1910
centos7.5:
2011
builddeps:
2112
- make
@@ -68,16 +59,6 @@ packages:
6859
commands:
6960
pre:
7061
- yum install epel-release
71-
debian8:
72-
builddeps:
73-
- make
74-
- gcc
75-
- pkg-config
76-
- libncursesw5-dev
77-
- libreadline-dev
78-
deps:
79-
- libncursesw5
80-
- readline-common
8162
debian9:
8263
builddeps:
8364
- make
@@ -98,16 +79,6 @@ packages:
9879
deps:
9980
- libncursesw5
10081
- readline-common
101-
fedora30:
102-
builddeps:
103-
- make
104-
- gcc
105-
- pkg-config
106-
- ncurses-devel
107-
- readline-devel
108-
deps:
109-
- ncurses
110-
- readline
11182
fedora31:
11283
builddeps:
11384
- make
@@ -138,7 +109,7 @@ packages:
138109
deps:
139110
- libncurses6
140111
- libreadline7
141-
opensuse.tumbleweed:
112+
opensuse15.2:
142113
builddeps:
143114
- make
144115
- gcc
@@ -147,17 +118,17 @@ packages:
147118
- ncurses-devel
148119
deps:
149120
- libncurses6
150-
- libreadline8
151-
ubuntu14.04:
121+
- libreadline7
122+
opensuse.tumbleweed:
152123
builddeps:
153124
- make
154125
- gcc
155126
- pkg-config
156-
- libncursesw5-dev
157-
- libreadline6-dev
127+
- readline-devel
128+
- ncurses-devel
158129
deps:
159-
- libncursesw5
160-
- libreadline6
130+
- libncurses6
131+
- libreadline8
161132
ubuntu16.04:
162133
builddeps:
163134
- make

nnn.1

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

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
#endif
118118

119119
/* Macro definitions */
120-
#define VERSION "3.3"
120+
#define VERSION "3.4"
121121
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
122122
#define SESSIONS_VERSION 1
123123

0 commit comments

Comments
 (0)