mirror of
https://github.com/jarun/nnn.git
synced 2025-01-15 21:36:42 +00:00
Prepare for release v4.7 Cuba libre
This commit is contained in:
parent
4bb7ffcd4a
commit
7330e6642b
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -27,6 +27,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
run: |
|
run: |
|
||||||
|
rm '/usr/local/bin/2to3-3.11'
|
||||||
brew update
|
brew update
|
||||||
brew install llvm
|
brew install llvm
|
||||||
export PATH="/usr/local/opt/llvm/bin:$PATH"
|
export PATH="/usr/local/opt/llvm/bin:$PATH"
|
||||||
|
|
22
CHANGELOG
22
CHANGELOG
|
@ -1,3 +1,25 @@
|
||||||
|
nnn v4.7 Cuba libre
|
||||||
|
2022-11-24
|
||||||
|
|
||||||
|
|
||||||
|
- fix <kbd>^N</kbd> not working sometimes (#1449)
|
||||||
|
- fix file remove confirmation prompt
|
||||||
|
- bring back `atool` as the default archive handler
|
||||||
|
- add option `-B` to use `bsdtar` as the archive utility
|
||||||
|
- find and list mode improvements
|
||||||
|
ntinue even if max paths/data size limit is exceeded
|
||||||
|
eed improvements
|
||||||
|
pport listing maximum 16K paths of 64 MiB of data
|
||||||
|
- key <kbd>J</kbd> to jump to an entry or relative offset from current entry
|
||||||
|
- prefill the hard link creation prompt when there's a single target (#1507)
|
||||||
|
- documented workaround for docker container crash (#1407, #1476)
|
||||||
|
- plugin `imgview`: handle arguments as strings (#1509)
|
||||||
|
- plugin `wallpaper`: support Wayland (#1512)
|
||||||
|
- plugin `upload`: handle selection using `ffsend` (#1523)
|
||||||
|
- add Rust icons (#1502)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
nnn v4.6 Absinthe
|
nnn v4.6 Absinthe
|
||||||
2022-07-26
|
2022-07-26
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
|
||||||
|
|
||||||
resource app_version {
|
resource app_version {
|
||||||
major = 4,
|
major = 4,
|
||||||
middle = 6,
|
middle = 7,
|
||||||
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 Jul 26, 2022
|
.Dd Nov 24, 2022
|
||||||
.Dt NNN 1
|
.Dt NNN 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
|
@ -137,7 +137,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "4.6"
|
#define VERSION "4.7"
|
||||||
#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