Skip to content

Commit

Permalink
Prepare for release v4.3 Martini
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Sep 29, 2021
1 parent fc86152 commit e74aa95
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
nnn v4.3 Martini
2021-09-29

- cool ASCII art logo in the help screen
- add `bookmarks` directory for flexible symlinked bookmarks
- new key <kbd>B</kbd> to add a symlinked bookmark for current dir
- special variables `$dN`, `$fN` available for plugins/prompt/shell to access
dir/hovered file in each conext
- config `NNN_ORDER` to set directory-specific ordering
- show/hide hidden files as per context state in plugin based batch rename
- retain search filter history for plugin `finder`
- sync multiple instances of `nnn` after operation on selection
- signal CWD change to terminal via OSC-7 (#1147)
- save complete per-context filter when saving sessions
- disable symlink resolution for paths in `NNN_BMS` and arg `PATH`
- do not end selection mode on running plugins/prompt/shell
- plugin `bookmarks` replaced by symlinked bookmarks support
- list open locations in active contexts in help page
- make option `O_MATCHFLTR` to discard filter key if no match
- configurable `NNN_TMPFILE` to _cd on quit_
- disable auto marking directories (use <kbd>-</kbd>)
- picker mode improvements
- open tty for input if `STDIN` is non-tty
- truncate output file before writing
- do not double select a file on <kbd>Enter</kbd>
- legacy macOS (< 10.12.0) support
- no redraw during du calculation, show processed dir name
- plugin `xdgdefault`: add dmenu support
- user patch `restorepreview`: close/restore `preview-tui` for internal edits

-------------------------------------------------------------------------------

nnn v4.2 Mojito
2021-07-21

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

resource app_version {
major = 4,
middle = 2,
middle = 3,
minor = 0,

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

short_info = "nnn",
Expand Down
2 changes: 1 addition & 1 deletion nnn.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.Dd Jul 21, 2021
.Dd Sep 29, 2021
.Dt NNN 1
.Os
.Sh NAME
Expand Down
2 changes: 1 addition & 1 deletion src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
#endif

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

#ifndef NOSSN
Expand Down

5 comments on commit e74aa95

@jarun
Copy link
Owner Author

@jarun jarun commented on e74aa95 Sep 29, 2021

Choose a reason for hiding this comment

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

@szlin
Copy link
Collaborator

@szlin szlin commented on e74aa95 Sep 30, 2021

Choose a reason for hiding this comment

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

@jarun The new version of nnn has been uploaded.

@jarun
Copy link
Owner Author

@jarun jarun commented on e74aa95 Sep 30, 2021

Choose a reason for hiding this comment

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

Thanks Lin!

@sjmulder
Copy link
Collaborator

Choose a reason for hiding this comment

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

In pkgsrc too yesterday! Btw, I had to patch 4.2 (and 4.3 also) to work on Solaris-derivatives lacking dprintf().

@jarun
Copy link
Owner Author

@jarun jarun commented on e74aa95 Sep 30, 2021

Choose a reason for hiding this comment

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

Thanks @sjmulder! Please keep the patch going forward.

Please sign in to comment.