Commit 9c20f43 1 parent 551e9ca commit 9c20f43 Copy full SHA for 9c20f43
File tree 5 files changed +31
-39
lines changed
5 files changed +31
-39
lines changed Original file line number Diff line number Diff line change
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
+
1
22
nnn v3.3
2
23
2020-07-14
3
24
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ resource app_version {
12
12
middle = 4,
13
13
minor = 0,
14
14
15
- variety = B_APPV_DEVELOPMENT ,
15
+ variety = B_APPV_FINAL ,
16
16
internal = 0,
17
17
18
18
short_info = "nnn",
Original file line number Diff line number Diff line change @@ -7,15 +7,6 @@ commands:
7
7
install :
8
8
- make PREFIX="/usr" strip install DESTDIR="${BP_DESTDIR}"
9
9
packages :
10
- archlinux :
11
- builddeps :
12
- - make
13
- - gcc
14
- - pkg-config
15
- deps :
16
- - ncurses
17
- - readline
18
- container : " archlinux/base"
19
10
centos7.5 :
20
11
builddeps :
21
12
- make
@@ -68,16 +59,6 @@ packages:
68
59
commands :
69
60
pre :
70
61
- 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
81
62
debian9 :
82
63
builddeps :
83
64
- make
@@ -98,16 +79,6 @@ packages:
98
79
deps :
99
80
- libncursesw5
100
81
- 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
111
82
fedora31 :
112
83
builddeps :
113
84
- make
@@ -138,7 +109,7 @@ packages:
138
109
deps :
139
110
- libncurses6
140
111
- libreadline7
141
- opensuse.tumbleweed :
112
+ opensuse15.2 :
142
113
builddeps :
143
114
- make
144
115
- gcc
@@ -147,17 +118,17 @@ packages:
147
118
- ncurses-devel
148
119
deps :
149
120
- libncurses6
150
- - libreadline8
151
- ubuntu14.04 :
121
+ - libreadline7
122
+ opensuse.tumbleweed :
152
123
builddeps :
153
124
- make
154
125
- gcc
155
126
- pkg-config
156
- - libncursesw5-dev
157
- - libreadline6-dev
127
+ - readline-devel
128
+ - ncurses-devel
158
129
deps :
159
- - libncursesw5
160
- - libreadline6
130
+ - libncurses6
131
+ - libreadline8
161
132
ubuntu16.04 :
162
133
builddeps :
163
134
- make
Original file line number Diff line number Diff line change 1
- .Dd Jul 14 , 2020
1
+ .Dd Aug 18 , 2020
2
2
.Dt NNN 1
3
3
.Os
4
4
.Sh NAME
Original file line number Diff line number Diff line change 117
117
#endif
118
118
119
119
/* Macro definitions */
120
- #define VERSION "3.3 "
120
+ #define VERSION "3.4 "
121
121
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
122
122
#define SESSIONS_VERSION 1
123
123
You can’t perform that action at this time.
0 commit comments