Skip to content

Commit 713bab2

Browse files
committed
Prepare for release v3.2
1 parent 9b7b9d8 commit 713bab2

File tree

7 files changed

+54
-8
lines changed

7 files changed

+54
-8
lines changed

CHANGELOG

+46
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
nnn v3.2
2+
2020-05-26
3+
4+
- an official logo
5+
- previews
6+
- config `NNN_FIFO` to write hovered file paths a previewer can read
7+
- plugin `preview-tabbed`: [tabbed](https://tools.suckless.org/tabbed)/xembed based file previewer
8+
- plugin `preview-tui`: simple TUI file previewer in tmux/xterm
9+
- plugin `preview-kitty`: preview using kitty terminal's capabilities
10+
- [live preview](https://github.com/jarun/nnn/wiki/Live-previews) configuration example
11+
- find & list
12+
- send list of files from (cmd run as) plugin to `nnn`
13+
- plugin `finder`: find/fd/fzf/grep/ripgrep/fzf (in subtree) and list in `nnn`
14+
- <kbd>Right</kbd> or <kbd>l</kbd> on symlink in list dir takes to target file
15+
- persistent session option `-S` [for disk usage, run `nnn -T d` (see help)]
16+
- hover on the file when a file path is passed as positional argument
17+
- go to first file or match with <kbd>'</kbd> (followed by <kbd>'</kbd> or <kbd>char</kbd>)
18+
- config `NNN_SEL` to specify custom selection file
19+
- config `NNN_LOCKER` to specify locker program
20+
- dim file details in detail mode
21+
- call `chdir()` on directory change
22+
- option `-l`: number of lines to move on mouse scroll
23+
- graphical [keybind map](https://github.com/jarun/nnn/wiki/Usage#graphical-map)
24+
- let `NNN_COLORS` override `NO_COLOR`
25+
- plugins
26+
- option `-P`: run plugin by key at start
27+
- run plugins with <kbd>Alt+key</kbd>
28+
- allow `NNN_PIPE` usage by commands run as plugin
29+
- input format to `NNN_PIPE`: `<ctxcode><opcode><data>` (see plugins doc)
30+
- set `ctxcode` to `+` for smart context usage (next inactive, else current)
31+
- `getplugs` to fetch plugins by installed version of `nnn`
32+
- plugin `mimelist`: list files by mime type in subtree
33+
- plugin `bookmarks`: named bookmarks using symlinks
34+
- plugin `nbak`: backup `nnn` config
35+
- `nuke` adds lowdown as alternative markdown viewer
36+
- several plugin improvements
37+
- fix broken screen on resize (see #520)
38+
- fix broken version sort (see #550)
39+
- fix list and pipe modes not working together
40+
- fix multiple issues with listing files
41+
- fix `@` shown in detail mode for symlink to dir
42+
- fix listing files directly under `/`
43+
- move to `-std=c11`
44+
45+
-------------------------------------------------------------------------------
46+
147
nnn v3.1
248
2020-04-13
349

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Don't memorize! Arrows (or <kbd>h</kbd> <kbd>j</kbd> <kbd>k</kbd> <kbd>l</kbd>),
144144
- [Todd Yamakawa](https://github.com/toddyamakawa)
145145
- and other contributors
146146

147-
Visit the [ToDo list](https://github.com/jarun/nnn/issues/506) to contribute or see the features in progress.
147+
Visit the [ToDo list](https://github.com/jarun/nnn/issues/594) to contribute or see the features in progress.
148148

149149
## Elsewhere
150150

misc/auto-completion/fish/nnn.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ else
1111
set sessions_dir $HOME/.config/nnn/sessions
1212
end
1313

14-
complete -c nnn -s a -d 'auto-setup NNN_FIFO'
14+
complete -c nnn -s a -d 'auto-create NNN_FIFO'
1515
complete -c nnn -s A -d 'disable dir auto-select'
1616
complete -c nnn -s b -r -d 'bookmark key to open' -x -a '(echo $NNN_BMS | awk -F: -v RS=\; \'{print $1"\t"$2}\')'
1717
complete -c nnn -s c -d 'cli-only opener'

misc/auto-completion/zsh/_nnn

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setopt localoptions noshwordsplit noksharrays
1010
local -a args
1111
args=(
12-
'(-a)-a[auto-setup NNN_FIFO]'
12+
'(-a)-a[auto-create NNN_FIFO]'
1313
'(-A)-A[disable dir auto-select]'
1414
'(-b)-b[bookmark key to open]:key char'
1515
'(-c)-c[cli-only opener]'

misc/packagecore/packagecore.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ packages:
128128
deps:
129129
- ncurses
130130
- readline
131-
opensuse.tumbleweed:
131+
opensuse15.1:
132132
builddeps:
133133
- make
134134
- gcc
@@ -138,7 +138,7 @@ packages:
138138
deps:
139139
- libncurses6
140140
- libreadline7
141-
opensuse15.1:
141+
opensuse.tumbleweed:
142142
builddeps:
143143
- make
144144
- gcc
@@ -147,7 +147,7 @@ packages:
147147
- ncurses-devel
148148
deps:
149149
- libncurses6
150-
- libreadline7
150+
- libreadline8
151151
ubuntu14.04:
152152
builddeps:
153153
- make

nnn.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.Dd Apr 13, 2020
1+
.Dd May 26, 2020
22
.Dt NNN 1
33
.Os
44
.Sh NAME

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
#include "dbg.h"
108108

109109
/* Macro definitions */
110-
#define VERSION "3.1"
110+
#define VERSION "3.2"
111111
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
112112
#define SESSIONS_VERSION 1
113113

0 commit comments

Comments
 (0)