Skip to content

Commit

Permalink
Prepare for release v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jul 26, 2017
1 parent 16f0054 commit 7fe6abb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
nnn v1.3
2017-07-26

What's in?
- Show directories in custom color (default: enabled in blue)
- Option `-e` to use exiftool instead of mediainfo
- Fixed #34: nftw(3) broken with too many open descriptors
- More concise help screen

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

nnn v1.2
2017-06-29

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.2
VERSION = 1.3

PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man
Expand Down
2 changes: 1 addition & 1 deletion Makefile.native
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 1.2
VERSION = 1.3

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 Jun 29, 2017
.Dd Jul 26, 2017
.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 @@ -96,7 +96,7 @@ disabledbg()
#endif /* DEBUGMODE */

/* Macro definitions */
#define VERSION "1.2"
#define VERSION "1.3"
#define LEN(x) (sizeof(x) / sizeof(*(x)))
#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
Expand Down

5 comments on commit 7fe6abb

@jarun
Copy link
Owner Author

@jarun jarun commented on 7fe6abb Jul 26, 2017

Choose a reason for hiding this comment

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

@shaggytwodope @szlin @zmwangx @fennm nnn v1.3 is released! Have fun!

@professorjamesmoriarty
Copy link
Contributor

Choose a reason for hiding this comment

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

AUR package and PPA packages updated accordingly.

@jarun
Copy link
Owner Author

@jarun jarun commented on 7fe6abb Jul 26, 2017

Choose a reason for hiding this comment

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

Thank you!

@szlin
Copy link
Collaborator

@szlin szlin commented on 7fe6abb Jul 26, 2017

Choose a reason for hiding this comment

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

@jarun The package has been uploaded into Debian archive.

@jarun
Copy link
Owner Author

@jarun jarun commented on 7fe6abb Jul 26, 2017

Choose a reason for hiding this comment

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

Thanks Lin!

Please sign in to comment.