@@ -1,3 +1,24 @@ | |||||
nnn v3.4 | |||||
2020-08-18 | |||||
- icons with icon-specific colors (thanks @KlzXS) | |||||
- enhanced `NNN_COLORS` with xterm 256 colors support | |||||
- new colorscheme with `NNN_FCOLORS` (file type specific colors) | |||||
- switch `-C` to force earlier colorscheme (dirs follow context color) | |||||
- updates for Haiku (thanks @CodeforEvolution) | |||||
- fix XFS navigation issue (thanks @ucs1) | |||||
- optimize archive extension matching on file open | |||||
- show location in context color | |||||
- support `host[:dir]` format for remote mounts | |||||
- clear selection after copy | |||||
- support traversal on file/dir creation | |||||
- show selection in reverse in status bar | |||||
- show status bar indicator `H` when hidden files are listed | |||||
- show and confirm archive command output | |||||
- support _cd on quit_ in picker mode | |||||
------------------------------------------------------------------------------- | |||||
nnn v3.3 | nnn v3.3 | ||||
2020-07-14 | 2020-07-14 | ||||
@@ -12,7 +12,7 @@ resource app_version { | |||||
middle = 4, | middle = 4, | ||||
minor = 0, | minor = 0, | ||||
variety = B_APPV_DEVELOPMENT, | |||||
variety = B_APPV_FINAL, | |||||
internal = 0, | internal = 0, | ||||
short_info = "nnn", | short_info = "nnn", | ||||
@@ -7,15 +7,6 @@ commands: | |||||
install: | install: | ||||
- make PREFIX="/usr" strip install DESTDIR="${BP_DESTDIR}" | - make PREFIX="/usr" strip install DESTDIR="${BP_DESTDIR}" | ||||
packages: | packages: | ||||
archlinux: | |||||
builddeps: | |||||
- make | |||||
- gcc | |||||
- pkg-config | |||||
deps: | |||||
- ncurses | |||||
- readline | |||||
container: "archlinux/base" | |||||
centos7.5: | centos7.5: | ||||
builddeps: | builddeps: | ||||
- make | - make | ||||
@@ -68,16 +59,6 @@ packages: | |||||
commands: | commands: | ||||
pre: | pre: | ||||
- yum install epel-release | - yum install epel-release | ||||
debian8: | |||||
builddeps: | |||||
- make | |||||
- gcc | |||||
- pkg-config | |||||
- libncursesw5-dev | |||||
- libreadline-dev | |||||
deps: | |||||
- libncursesw5 | |||||
- readline-common | |||||
debian9: | debian9: | ||||
builddeps: | builddeps: | ||||
- make | - make | ||||
@@ -98,16 +79,6 @@ packages: | |||||
deps: | deps: | ||||
- libncursesw5 | - libncursesw5 | ||||
- readline-common | - readline-common | ||||
fedora30: | |||||
builddeps: | |||||
- make | |||||
- gcc | |||||
- pkg-config | |||||
- ncurses-devel | |||||
- readline-devel | |||||
deps: | |||||
- ncurses | |||||
- readline | |||||
fedora31: | fedora31: | ||||
builddeps: | builddeps: | ||||
- make | - make | ||||
@@ -138,7 +109,7 @@ packages: | |||||
deps: | deps: | ||||
- libncurses6 | - libncurses6 | ||||
- libreadline7 | - libreadline7 | ||||
opensuse.tumbleweed: | |||||
opensuse15.2: | |||||
builddeps: | builddeps: | ||||
- make | - make | ||||
- gcc | - gcc | ||||
@@ -147,17 +118,17 @@ packages: | |||||
- ncurses-devel | - ncurses-devel | ||||
deps: | deps: | ||||
- libncurses6 | - libncurses6 | ||||
- libreadline8 | |||||
ubuntu14.04: | |||||
- libreadline7 | |||||
opensuse.tumbleweed: | |||||
builddeps: | builddeps: | ||||
- make | - make | ||||
- gcc | - gcc | ||||
- pkg-config | - pkg-config | ||||
- libncursesw5-dev | |||||
- libreadline6-dev | |||||
- readline-devel | |||||
- ncurses-devel | |||||
deps: | deps: | ||||
- libncursesw5 | |||||
- libreadline6 | |||||
- libncurses6 | |||||
- libreadline8 | |||||
ubuntu16.04: | ubuntu16.04: | ||||
builddeps: | builddeps: | ||||
- make | - make | ||||
@@ -1,4 +1,4 @@ | |||||
.Dd Jul 14, 2020 | |||||
.Dd Aug 18, 2020 | |||||
.Dt NNN 1 | .Dt NNN 1 | ||||
.Os | .Os | ||||
.Sh NAME | .Sh NAME | ||||
@@ -117,7 +117,7 @@ | |||||
#endif | #endif | ||||
/* Macro definitions */ | /* Macro definitions */ | ||||
#define VERSION "3.3" | |||||
#define VERSION "3.4" | |||||
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" | #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" | ||||
#define SESSIONS_VERSION 1 | #define SESSIONS_VERSION 1 | ||||