mirror of
https://github.com/jarun/nnn.git
synced 2024-11-09 21:03:12 +00:00
Prepare for release v5.0 Daiquiri
This commit is contained in:
parent
48d986f706
commit
bdb1a64303
29
CHANGELOG
29
CHANGELOG
|
@ -1,3 +1,32 @@
|
||||||
|
nnn v5.0 Daiquiri
|
||||||
|
2024-08-26
|
||||||
|
|
||||||
|
- show relative line numbering when jumping (#1808)
|
||||||
|
- option `-N` to use native prompt when compiled with libreadline
|
||||||
|
- rm improvements
|
||||||
|
- log removed filename
|
||||||
|
- cancel on 'n' or 'N'
|
||||||
|
- show name of the hovered file to be removed
|
||||||
|
- show number of selected files to be removed
|
||||||
|
- new keybind <kbd>X</kbd> to force `rm -rf` always (#1811)
|
||||||
|
- fix sort order getting changed on context switch (#1757)
|
||||||
|
- fix current selection on new file creation, if symlinks exist (#1767)
|
||||||
|
- fix filter toggle with mouse click on last 2 rows (#1765)
|
||||||
|
- fix file creation (#1864)
|
||||||
|
- when handling bookmark, use readlink, not realpath
|
||||||
|
- set `$PWD` on directory switch
|
||||||
|
- add option `-0` to null-separate file paths in picker mode
|
||||||
|
- quitcd.nu (for nushell) now supports modular import (#1806)
|
||||||
|
- add _command as plugin_ example to cd to user input directory
|
||||||
|
- `cbcopy-mac`, `cbpaste-mac`: plugins for integration with macOS clipboard
|
||||||
|
- `fzhist` plugin: add support for zsh history
|
||||||
|
- `preview-tui` plugin: support eza as replacement for exa, multiple fixes
|
||||||
|
- `preview-tui` plugin: add full svg support (#1865)
|
||||||
|
- `preview-tabbed`: show (n)sxiv in thumbnail mode inside "Pictures" directory
|
||||||
|
- mpv sixel/kitty support for preview (#1590)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v4.9 Elixir
|
nnn v4.9 Elixir
|
||||||
2023-08-27
|
2023-08-27
|
||||||
|
|
||||||
|
|
|
@ -8,11 +8,11 @@
|
||||||
resource app_signature "application/x-vnd.Jarun-nnn";
|
resource app_signature "application/x-vnd.Jarun-nnn";
|
||||||
|
|
||||||
resource app_version {
|
resource app_version {
|
||||||
major = 4,
|
major = 5,
|
||||||
middle = 9,
|
middle = 0,
|
||||||
minor = 0,
|
minor = 0,
|
||||||
|
|
||||||
variety = B_APPV_DEVELOPMENT,
|
variety = B_APPV_FINAL,
|
||||||
internal = 0,
|
internal = 0,
|
||||||
|
|
||||||
short_info = "nnn",
|
short_info = "nnn",
|
||||||
|
|
|
@ -148,7 +148,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "4.9"
|
#define VERSION "5.0"
|
||||||
#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