mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Prepare for release v3.0
This commit is contained in:
parent
3532d6c3ab
commit
bc7a81921e
29
CHANGELOG
29
CHANGELOG
|
@ -1,3 +1,32 @@
|
||||||
|
nnn v3.0
|
||||||
|
2020-02-12
|
||||||
|
|
||||||
|
- take list of files as input and show
|
||||||
|
- option `-e` replaces `NNN_USE_EDITOR`
|
||||||
|
- option `-t` replaces `NNN_IDLE_TIMEOUT`
|
||||||
|
- PCRE support
|
||||||
|
- more readline bindings for native prompts
|
||||||
|
- run GUI app as plugin
|
||||||
|
- attempt lazy unmount when regular unmount fails
|
||||||
|
- fix unmount on macOS: use `umount`
|
||||||
|
- detect `sshfs` and `rclone` to prompt intelligently
|
||||||
|
- auto-proceed on file open (toggle key <kbd>+</kbd>)
|
||||||
|
- quit with error code on <kbd>Q</kbd>
|
||||||
|
- additional key <kbd>F5</kbd> to toggle hidden
|
||||||
|
- key <kbd>e</kbd> to edit in EDITOR (back on multiple user requests)
|
||||||
|
- option to edit list of files in selection is changed to <kbd>E</kbd>
|
||||||
|
- do not end selection on redraw
|
||||||
|
- `nuke`: [`glow`](https://github.com/charmbracelet/glow) as Markdown viewer
|
||||||
|
- `nuke`: refactor, handle some common video types by extension
|
||||||
|
- file name removed from status bar
|
||||||
|
- static Makefile target
|
||||||
|
- generate, upload static package on release
|
||||||
|
- fix crash on entering empty dir, then Down
|
||||||
|
- fix keypresses lost when showing message
|
||||||
|
- fix #227: `nnn` creates xdg-open zombies
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v2.9
|
nnn v2.9
|
||||||
2020-01-15
|
2020-01-15
|
||||||
|
|
||||||
|
|
|
@ -177,4 +177,4 @@ Completion scripts for Bash, Fish and Zsh are [available](misc/auto-completion).
|
||||||
- [Maxim Baz](https://github.com/maximbaz)
|
- [Maxim Baz](https://github.com/maximbaz)
|
||||||
- and other contributors
|
- and other contributors
|
||||||
|
|
||||||
`nnn` is actively developed. Visit the to the [ToDo list](https://github.com/jarun/nnn/issues/448) to contribute or see the features in progress.
|
`nnn` is actively developed. Visit the to the [ToDo list](https://github.com/jarun/nnn/issues/472) to contribute or see the features in progress.
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -1,4 +1,4 @@
|
||||||
.Dd Jan 15, 2020
|
.Dd Feb 12, 2020
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
#include "dbg.h"
|
#include "dbg.h"
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "2.9"
|
#define VERSION "3.0"
|
||||||
#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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue