Skip to content

Commit

Permalink
Prepare for release v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jun 29, 2017
1 parent f9a249c commit 590d079
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
nnn v1.2
2017-06-29

What's in?
- Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
- Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
- Bookmark support (maximum 10, key `b`)
- *Navigate-as-you-type* mode (key `Insert` or option `-i`)
- Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
- Show current directory content size and file count in disk usage mode
- Add detail view mode as default, use `-l` to start in light mode
- Shortcuts `F2` and `^L` to refresh and unfilter
Note: if filter is empty, `Enter` *opens* the currently selected file now
- Help screen shows bookmarks and configuration
- Show a message when calculating disk usage
- Show the spawned shell level
- Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)

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

nnn v1.1
2017-05-12

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.1
VERSION = 1.2

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.1
VERSION = 1.2

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 12, 2017
.Dd Jun 29, 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 "v1.1"
#define VERSION "1.2"
#define LEN(x) (sizeof(x) / sizeof(*(x)))
#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
Expand Down

9 comments on commit 590d079

@jarun
Copy link
Owner Author

@jarun jarun commented on 590d079 Jun 29, 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.2 is released!

Please note: we use Makefile for the generic builds now.

@jarun
Copy link
Owner Author

@jarun jarun commented on 590d079 Jun 29, 2017

Choose a reason for hiding this comment

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

And do enjoy it yourselves!!! Added lots of features in this one. ;)

@professorjamesmoriarty
Copy link
Contributor

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 590d079 Jun 29, 2017

Choose a reason for hiding this comment

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

Thank you so much!

@szlin
Copy link
Collaborator

@szlin szlin commented on 590d079 Jun 29, 2017

Choose a reason for hiding this comment

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

Uploaded! Thanks @jarun

@jarun
Copy link
Owner Author

@jarun jarun commented on 590d079 Jun 29, 2017

Choose a reason for hiding this comment

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

Thanks Lin!

@jarun
Copy link
Owner Author

@jarun jarun commented on 590d079 Jun 29, 2017

Choose a reason for hiding this comment

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

Just noticed it's accepted for Debian Buster release. Awesome!

@jarun
Copy link
Owner Author

@jarun jarun commented on 590d079 Jul 11, 2017

Choose a reason for hiding this comment

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

@fennm Fedora 26 is released. Can you please upgrade the build matrix to generate Fedora 26 packages (both nnn and bcal)?

@fennm
Copy link
Contributor

@fennm fennm commented on 590d079 Jul 12, 2017

Choose a reason for hiding this comment

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

Sure thing, I created the following pull requests and confirmed passing builds:

nnn: #33
bcal: jarun/bcal#14

Please merge them if they look good to you, or let me know and I will do the merge. Thanks!

Please sign in to comment.