Skip to content

Commit

Permalink
Prepare for release v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed May 1, 2018
1 parent 19448ed commit d6c0e10
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
nnn v1.8
2018-05-02

What's in?
- Run a custom script
- Archive selected file/directory
- Show number of cherry-picked files in multi-copy mode
- Env var `NNN_SHOW_HIDDEN` to show hidden files by default
- Additional information in help screen
- Give preference to env var VISUAL, if defined, over EDITOR
- New/changed/remapped shortcuts
- <kbd>^]</kbd> - spawn a new shell in current directory
- <kbd>r</kbd> - edit directory entries in vidir
- <kbd>R</kbd> - run a custom script
- <kbd>^I</kbd> - toggle navigate-as-you-type mode
- <kbd>L</kbd> - lock the current terminal (Linux-only)
- All Ctrl shortcuts enabled in navigate-as-you-type mode
- Fix: GUI programs closing when parent terminal is closed
- Recognize `~`, `-` and `&` at bookmark prompt
- Recognize ruby (.rb) files as text files
- Efficient integer-only file size calculation
- Official inclusion on openSUSE and Fedora
- Package generation for Ubuntu 18.04

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

nnn v1.7
2018-02-28

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

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 Feb 28, 2018
.Dd May 02, 2018
.Dt NNN 1
.Os
.Sh NAME
Expand Down
2 changes: 1 addition & 1 deletion nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ disabledbg()
#endif /* DEBUGMODE */

/* Macro definitions */
#define VERSION "1.7"
#define VERSION "1.8"
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"

#define LEN(x) (sizeof(x) / sizeof(*(x)))
Expand Down
10 changes: 10 additions & 0 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,13 @@ packages:
deps:
- libncursesw5
- libreadline6
ubuntu18.04:
builddeps:
- make
- gcc
- pkg-config
- libncursesw5-dev
- libreadline-dev
deps:
- libncursesw5
- libreadline7

5 comments on commit d6c0e10

@jarun
Copy link
Owner Author

@jarun jarun commented on d6c0e10 May 1, 2018

Choose a reason for hiding this comment

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

@szlin, @zmwangx, @dilawar nnn v1.8 is released!

@szlin
Copy link
Collaborator

@szlin szlin commented on d6c0e10 May 2, 2018

Choose a reason for hiding this comment

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

@jarun The version 1.8 of nnn has been updated. Thanks!

@dilawar
Copy link
Collaborator

@dilawar dilawar commented on d6c0e10 May 2, 2018

Choose a reason for hiding this comment

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

I've submitted a request to upgrade the version. Thanks to Avindra Goolcharan for upgrading the spec file.

@eclipseo
Copy link

Choose a reason for hiding this comment

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

nnn v1.8 is built on Fedora 27 to 29.

@jarun
Copy link
Owner Author

@jarun jarun commented on d6c0e10 May 2, 2018

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.