mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 03:41:27 +00:00
Prepare for release v3.6
This commit is contained in:
parent
3c0c5951ee
commit
234a7e0080
23
CHANGELOG
23
CHANGELOG
|
@ -1,3 +1,26 @@
|
||||||
|
nnn v3.6 Nina
|
||||||
|
2021-03-16
|
||||||
|
|
||||||
|
- REPL command prompt (<kbd>Esc</kbd> or <kbd>Enter</kbd> to exit)
|
||||||
|
- invert selection with <kbd>A</kbd>
|
||||||
|
- option `-u` removed (always prefer selection to hovered)
|
||||||
|
- visit start dir on <kbd>@</kbd> when start path is a file
|
||||||
|
- exit filter mode and redraw on <kbd>^L</kbd> if no last filter
|
||||||
|
- plugin `fzcd` now selects the chosen file (#876)
|
||||||
|
- `ueberzug` support in plugin `preview-tui`
|
||||||
|
- new plugin `preview-tui-ext` with extra preview support
|
||||||
|
- clear selection after successful plugin invocation
|
||||||
|
- add method to sync subshell `$PWD` in WIki
|
||||||
|
- clear selection on single file deletion (#812)
|
||||||
|
- copy between instances not working (#864)
|
||||||
|
- plugin `togglex` to toggle exe mode of a selection (#813)
|
||||||
|
- fix `memccpy()` buffer overlap fault on macOS (#786)
|
||||||
|
- show `0 selected` msg on cp/mv with empty selection (#855)
|
||||||
|
- fix frozen terminal caused by opener (#858)
|
||||||
|
- migrate macOS CI to GitHub workflows, retire Travis
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v3.5 Freddie
|
nnn v3.5 Freddie
|
||||||
2020-11-17
|
2020-11-17
|
||||||
|
|
||||||
|
|
|
@ -193,4 +193,4 @@ Don't memorize! Arrows (or <kbd>h</kbd> <kbd>j</kbd> <kbd>k</kbd> <kbd>l</kbd>),
|
||||||
- [Todd Yamakawa](https://github.com/toddyamakawa)
|
- [Todd Yamakawa](https://github.com/toddyamakawa)
|
||||||
- and other contributors
|
- and other contributors
|
||||||
|
|
||||||
Visit the [ToDo list](https://github.com/jarun/nnn/issues/781) to contribute or see the features in progress.
|
Visit the [ToDo list](https://github.com/jarun/nnn/issues/881) to contribute or see the features in progress.
|
||||||
|
|
|
@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
|
||||||
|
|
||||||
resource app_version {
|
resource app_version {
|
||||||
major = 3,
|
major = 3,
|
||||||
middle = 5,
|
middle = 6,
|
||||||
minor = 0,
|
minor = 0,
|
||||||
|
|
||||||
variety = B_APPV_DEVELOPMENT,
|
variety = B_APPV_FINAL,
|
||||||
internal = 0,
|
internal = 0,
|
||||||
|
|
||||||
short_info = "nnn",
|
short_info = "nnn",
|
||||||
|
|
|
@ -79,16 +79,6 @@ packages:
|
||||||
deps:
|
deps:
|
||||||
- libncursesw6
|
- libncursesw6
|
||||||
- readline-common
|
- readline-common
|
||||||
fedora31:
|
|
||||||
builddeps:
|
|
||||||
- make
|
|
||||||
- gcc
|
|
||||||
- pkg-config
|
|
||||||
- ncurses-devel
|
|
||||||
- readline-devel
|
|
||||||
deps:
|
|
||||||
- ncurses
|
|
||||||
- readline
|
|
||||||
fedora32:
|
fedora32:
|
||||||
builddeps:
|
builddeps:
|
||||||
- make
|
- make
|
||||||
|
@ -99,16 +89,6 @@ packages:
|
||||||
deps:
|
deps:
|
||||||
- ncurses
|
- ncurses
|
||||||
- readline
|
- readline
|
||||||
opensuse15.1:
|
|
||||||
builddeps:
|
|
||||||
- make
|
|
||||||
- gcc
|
|
||||||
- pkg-config
|
|
||||||
- readline-devel
|
|
||||||
- ncurses-devel
|
|
||||||
deps:
|
|
||||||
- libncurses6
|
|
||||||
- libreadline7
|
|
||||||
opensuse15.2:
|
opensuse15.2:
|
||||||
builddeps:
|
builddeps:
|
||||||
- make
|
- make
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -1,4 +1,4 @@
|
||||||
.Dd Nov 17, 2020
|
.Dd Mar 16, 2021
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
|
@ -126,7 +126,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "3.5"
|
#define VERSION "3.6"
|
||||||
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
|
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
|
||||||
|
|
||||||
#ifndef NOSSN
|
#ifndef NOSSN
|
||||||
|
|
Loading…
Reference in a new issue