Skip to content

Commit 0988268

Browse files
committed
Prepare for release v4.6 Absinthe
1 parent 9828715 commit 0988268

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- run:
102102
name: "publish to GitHub"
103103
command: |
104-
go get github.com/tcnksm/ghr
104+
go install github.com/tcnksm/ghr@latest
105105
ghr -t ${GITHUB_API_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -replace ${CIRCLE_TAG} ./dist/
106106
107107
workflows:

CHANGELOG

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
nnn v4.6 Absinthe
2+
2022-07-26
3+
4+
- icon handling overhaul (#1432, #1436)
5+
- better performance, memory usage and reduced binary size
6+
- emoji support for supporting distros and terminals (#1346)
7+
- open the target directory of symlinked bookmarks (#1353)
8+
- enable show hidden when a hidden file is passed as argument
9+
- add Colemak-DH layout keybinds to patch framework (#1421)
10+
- set `bsdtar` as the default archive utility
11+
- support 4 byte unicode keybinds (#1428)
12+
- enable directory auto-enter during filter operation (`-A` to disable)
13+
- enable filter prompt inside the bookmark/plugin dirs
14+
- show volume usage information in help
15+
- add new icon colors for mp4 and flac files
16+
- use `stat -x` for file details on *BSD and macOS (#1389)
17+
- interpret suffix `$nnn` when paging (#1355)
18+
- disable key <kbd>e</kbd> (edit file) in explorer mode (#1394)
19+
- fix double order chars on filter case match change
20+
- `.cbcp`: more verbose message on paste without a selection
21+
- plugin `preview-tui`: scale-up kitty previews
22+
- plugin `preview-tui`: account for ueberzug offset
23+
- plugin `preview-tui`: support `SPLIT_SIZE` for preview pane (#1431)
24+
- plugin `autojump`: support z.lua
25+
- new Makefile target `shellcheck` to verify plugins
26+
27+
-------------------------------------------------------------------------------
28+
129
nnn v4.5 Cachaça
230
2022-04-26
331

misc/haiku/nnn.rdef

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ resource app_signature "application/x-vnd.Jarun-nnn";
99

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

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

1818
short_info = "nnn",

nnn.1

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

src/nnn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
#endif
136136

137137
/* Macro definitions */
138-
#define VERSION "4.5"
138+
#define VERSION "4.6"
139139
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
140140

141141
#ifndef NOSSN

0 commit comments

Comments
 (0)