CHANGELOG | 21 +++++++++++++++++++++ misc/haiku/nnn.rdef | 2 +- misc/packagecore/packagecore.yaml | 43 +++++++------------------------------------ nnn.1 | 2 +- src/nnn.c | 2 +- diff --git a/CHANGELOG b/CHANGELOG index ed3c965f6e7c9ad60601dac29d5441b0d6827407..55e3063a0bfb3df0adfb833361c11553f938e277 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 2020-07-14 diff --git a/misc/haiku/nnn.rdef b/misc/haiku/nnn.rdef index 7a35654c8eaabb958ea534d2aad8e3b9dff92fb3..2af534e78901c09b465c77aa3881f0534a53e48a 100644 --- a/misc/haiku/nnn.rdef +++ b/misc/haiku/nnn.rdef @@ -12,7 +12,7 @@ major = 3, middle = 4, minor = 0, - variety = B_APPV_DEVELOPMENT, + variety = B_APPV_FINAL, internal = 0, short_info = "nnn", diff --git a/misc/packagecore/packagecore.yaml b/misc/packagecore/packagecore.yaml index 01709828feb53935bde9c2493d3173dab2b85fe2..b77271ed3c4f0e69c283863fd1660ff2c6aef1b2 100644 --- a/misc/packagecore/packagecore.yaml +++ b/misc/packagecore/packagecore.yaml @@ -7,15 +7,6 @@ commands: install: - make PREFIX="/usr" strip install DESTDIR="${BP_DESTDIR}" packages: - archlinux: - builddeps: - - make - - gcc - - pkg-config - deps: - - ncurses - - readline - container: "archlinux/base" centos7.5: builddeps: - make @@ -68,16 +59,6 @@ - readline commands: pre: - yum install epel-release - debian8: - builddeps: - - make - - gcc - - pkg-config - - libncursesw5-dev - - libreadline-dev - deps: - - libncursesw5 - - readline-common debian9: builddeps: - make @@ -98,7 +79,7 @@ - libreadline-dev deps: - libncursesw5 - readline-common - fedora30: + fedora31: builddeps: - make - gcc @@ -108,7 +89,7 @@ - readline-devel deps: - ncurses - readline - fedora31: + fedora32: builddeps: - make - gcc @@ -118,17 +99,17 @@ - readline-devel deps: - ncurses - readline - fedora32: + opensuse15.1: builddeps: - make - gcc - pkg-config + - readline-devel - ncurses-devel - - readline-devel deps: - - ncurses - - readline - opensuse15.1: + - libncurses6 + - libreadline7 + opensuse15.2: builddeps: - make - gcc @@ -148,16 +129,6 @@ - ncurses-devel deps: - libncurses6 - libreadline8 - ubuntu14.04: - builddeps: - - make - - gcc - - pkg-config - - libncursesw5-dev - - libreadline6-dev - deps: - - libncursesw5 - - libreadline6 ubuntu16.04: builddeps: - make diff --git a/nnn.1 b/nnn.1 index d7043b8325e2c9b684f0eb7c4f8e3d6de9020a05..32cf608a3fd3a14c58df92eb4e2e891588a193bd 100644 --- a/nnn.1 +++ b/nnn.1 @@ -1,4 +1,4 @@ -.Dd Jul 14, 2020 +.Dd Aug 18, 2020 .Dt NNN 1 .Os .Sh NAME diff --git a/src/nnn.c b/src/nnn.c index 4a6a5a6e63659ddea71eb0a9a768719f201f1a06..f9b20506ddb815c970a5431ed213f1107fa6bb02 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -117,7 +117,7 @@ #include "icons.h" #endif /* Macro definitions */ -#define VERSION "3.3" +#define VERSION "3.4" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #define SESSIONS_VERSION 1