Skip to content

Commit

Permalink
Prepare for release v2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Aug 5, 2019
1 parent a95fc0c commit 75bfcb1
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 13 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
nnn v2.6
2019-08-06

- new plugins
- view image or browse a directory of images in terminal
- show image thumbnails
- PDF and text file reader
- calculate and verify checksum of selection or file
- append (and play) selection/dir/file music in MOC
- variable bitrate mp3 ringtone generator
- split current file or join selection
- better experience on Termux (and touch based devices)
- mouse scrolling support (with ncursesw6.0 and above)
- tap/left click to visit parent, toggle nav-as-you-type mode
- light mode set as default
- show status bar and use reverse video in light mode
- changed program options
- `-d`: detail mode
- `-H`: show hidden files
- `-l` is retired
- support `XDG_CONFIG_HOME`
- support <kbd>/</kbd> as an additional Leader key when filter is on
- sort by file extension
- use zip/unzip/tar if atool/bsdtar not found
- support duplicate file (key <kbd>^R</kbd>, same as rename file)
- new config option `NNN_SSHFS_OPTS` to specify `sshfs` options
- restrict opening 0 byte files (`NNN_RESTRICT_0B` is obsolete)
- critical defects fixed
- fix #276 - crash with variable length inotify event handling
- fix #285 - hang after deleting/moving current directory
- fix #274 - a broken prompt on empty input with libreadline
- fix #304 - list selection from another instance
- `cmatrix` as locker fallback
- wait for user input after running a command from prompt
- scrolloff set to 3 from 5

nnn v2.5
2019-05-27

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 2.5
VERSION = 2.6

PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
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 May 27, 2019
.Dd Aug 06, 2019
.Dt NNN 1
.Os
.Sh NAME
Expand Down
10 changes: 0 additions & 10 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,6 @@ packages:
deps:
- libncursesw5
- readline-common
debian10:
builddeps:
- make
- gcc
- pkg-config
- libncursesw5-dev
- libreadline-dev
deps:
- libncursesw5
- readline-common
fedora25:
builddeps:
- make
Expand Down
2 changes: 1 addition & 1 deletion src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
#include "dbg.h"

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

#ifndef S_BLKSIZE
Expand Down

13 comments on commit 75bfcb1

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 5, 2019

Choose a reason for hiding this comment

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

@szlin, @dilawar, @eclipso, @maxice8, @fornwall nnn v2.6 is released!

Note that Makefile target strip has to be explicit now. Earlier it was implicit with target norl.

@maxice8
Copy link
Contributor

@maxice8 maxice8 commented on 75bfcb1 Aug 5, 2019

Choose a reason for hiding this comment

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

I don't update nnn on Void Linux anymore and it is maintained by someone else on Alpine Linux

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 5, 2019

Choose a reason for hiding this comment

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

Which distro are you associated with nowadays?

@maxice8
Copy link
Contributor

@maxice8 maxice8 commented on 75bfcb1 Aug 5, 2019 via email

Choose a reason for hiding this comment

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

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 5, 2019

Choose a reason for hiding this comment

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

Are you maintaining any of my packages on Alpine Linux now?

@maxice8
Copy link
Contributor

@maxice8 maxice8 commented on 75bfcb1 Aug 5, 2019 via email

Choose a reason for hiding this comment

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

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 5, 2019

Choose a reason for hiding this comment

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

OK. Thanks for confirming.

@fornwall
Copy link

Choose a reason for hiding this comment

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

@jarun Thanks for the heads up - the Termux package has now been updated.

@szlin
Copy link
Collaborator

@szlin szlin commented on 75bfcb1 Aug 6, 2019

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 updated, thank you for your work!

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 6, 2019

Choose a reason for hiding this comment

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

Thanks guys!

@dilawar
Copy link
Collaborator

@dilawar dilawar commented on 75bfcb1 Aug 6, 2019

Choose a reason for hiding this comment

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

Submitted to openSUSE Factory.

@eclipseo
Copy link

Choose a reason for hiding this comment

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

Sorry for the delay, updated on F29-F31 + EPEL7.

@jarun
Copy link
Owner Author

@jarun jarun commented on 75bfcb1 Aug 8, 2019

Choose a reason for hiding this comment

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

Thanks @dilawar and @eclipseo!

Please sign in to comment.