Skip to content

Commit

Permalink
Prepare for release v5.0 Daiquiri
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Aug 26, 2024
1 parent 48d986f commit bdb1a64
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
2023-08-27

Expand Down
6 changes: 3 additions & 3 deletions misc/haiku/nnn.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
resource app_signature "application/x-vnd.Jarun-nnn";

resource app_version {
major = 4,
middle = 9,
major = 5,
middle = 0,
minor = 0,

variety = B_APPV_DEVELOPMENT,
variety = B_APPV_FINAL,
internal = 0,

short_info = "nnn",
Expand Down
2 changes: 1 addition & 1 deletion src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
#endif

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

#ifndef NOSSN
Expand Down

1 comment on commit bdb1a64

@jarun
Copy link
Owner Author

@jarun jarun commented on bdb1a64 Aug 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.