Skip to content

Commit bdb1a64

Browse files
committed
Prepare for release v5.0 Daiquiri
1 parent 48d986f commit bdb1a64

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

CHANGELOG

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
nnn v5.0 Daiquiri
2+
2024-08-26
3+
4+
- show relative line numbering when jumping (#1808)
5+
- option `-N` to use native prompt when compiled with libreadline
6+
- rm improvements
7+
- log removed filename
8+
- cancel on 'n' or 'N'
9+
- show name of the hovered file to be removed
10+
- show number of selected files to be removed
11+
- new keybind <kbd>X</kbd> to force `rm -rf` always (#1811)
12+
- fix sort order getting changed on context switch (#1757)
13+
- fix current selection on new file creation, if symlinks exist (#1767)
14+
- fix filter toggle with mouse click on last 2 rows (#1765)
15+
- fix file creation (#1864)
16+
- when handling bookmark, use readlink, not realpath
17+
- set `$PWD` on directory switch
18+
- add option `-0` to null-separate file paths in picker mode
19+
- quitcd.nu (for nushell) now supports modular import (#1806)
20+
- add _command as plugin_ example to cd to user input directory
21+
- `cbcopy-mac`, `cbpaste-mac`: plugins for integration with macOS clipboard
22+
- `fzhist` plugin: add support for zsh history
23+
- `preview-tui` plugin: support eza as replacement for exa, multiple fixes
24+
- `preview-tui` plugin: add full svg support (#1865)
25+
- `preview-tabbed`: show (n)sxiv in thumbnail mode inside "Pictures" directory
26+
- mpv sixel/kitty support for preview (#1590)
27+
28+
-------------------------------------------------------------------------------
29+
130
nnn v4.9 Elixir
231
2023-08-27
332

misc/haiku/nnn.rdef

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
resource app_signature "application/x-vnd.Jarun-nnn";
99

1010
resource app_version {
11-
major = 4,
12-
middle = 9,
11+
major = 5,
12+
middle = 0,
1313
minor = 0,
1414

15-
variety = B_APPV_DEVELOPMENT,
15+
variety = B_APPV_FINAL,
1616
internal = 0,
1717

1818
short_info = "nnn",

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
#endif
149149

150150
/* Macro definitions */
151-
#define VERSION "4.9"
151+
#define VERSION "5.0"
152152
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
153153

154154
#ifndef NOSSN

0 commit comments

Comments
 (0)