mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 16:39:14 +00:00
Prepare for release v4.9 Elixir
This commit is contained in:
parent
d8c1c99e45
commit
33126ee813
20
CHANGELOG
20
CHANGELOG
|
@ -1,3 +1,23 @@
|
||||||
|
nnn v4.9 Elixir
|
||||||
|
2023-08-27
|
||||||
|
|
||||||
|
- config option `NNN_ARCHMNT` to specify archive mounter utility
|
||||||
|
- key <kbd>^y</kbd> to jump to next young file
|
||||||
|
- filter adjustment when opening context from plugin
|
||||||
|
- properly update mode after `chmod`
|
||||||
|
- pre-fill selected file name to create link if sel is preferred over hovered
|
||||||
|
- fix crash when `PWD` is empty
|
||||||
|
- make `quitcd.bash_zsh` POSIX-compliant
|
||||||
|
- `nmount` - support `udiskctl` as default
|
||||||
|
- `preview-tui` - support wezterm split size percentage
|
||||||
|
- `preview-tui` - move to bash for environment manipulation through arrays
|
||||||
|
- `fzopen` - handle empty selection
|
||||||
|
- `finder` - use default path to find
|
||||||
|
- add icons for `djvu` files
|
||||||
|
- support Nerd Fonts v3.0.0 and above (older versions are broken by v3.0.0)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v4.8 Spritz
|
nnn v4.8 Spritz
|
||||||
2023-04-13
|
2023-04-13
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
|
||||||
|
|
||||||
resource app_version {
|
resource app_version {
|
||||||
major = 4,
|
major = 4,
|
||||||
middle = 7,
|
middle = 9,
|
||||||
minor = 0,
|
minor = 0,
|
||||||
|
|
||||||
variety = B_APPV_DEVELOPMENT,
|
variety = B_APPV_FINAL,
|
||||||
internal = 0,
|
internal = 0,
|
||||||
|
|
||||||
short_info = "nnn",
|
short_info = "nnn",
|
||||||
|
|
2
nnn.1
2
nnn.1
|
@ -1,4 +1,4 @@
|
||||||
.Dd Apr 13, 2023
|
.Dd Aug 27, 2023
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
|
@ -148,7 +148,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "4.8"
|
#define VERSION "4.9"
|
||||||
#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