aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-05-11 22:25:22 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-05-11 22:25:22 +0530
commita3101761601ef50110eb72b311bcacc79e222166 (patch)
treee00bf128e96f99de32153667ae3d57ece4221b26
parentb06ea71d98d2877e11969559b2b1acd75bbcecd8 (diff)
downloadnnn-a3101761601ef50110eb72b311bcacc79e222166.tar.gz
Prepare for release v1.1
-rw-r--r--CHANGELOG21
-rw-r--r--Makefile2
-rw-r--r--README.md2
-rw-r--r--nnn.12
-rw-r--r--nnn.c2
5 files changed, 25 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c7a0d9a..743b900 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,24 @@
+nnn v1.1
+2017-05-12
+
+News
+- Introducing nlay - a highly customizable bash script to handle media type
+- nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
+- RPM packages for CentOS 7 and Fedora 24
+
+Modifications
+- *Search-as-you-type* support
+- Unicode support
+- Option `-S` to start in disk usage analyzer mode
+- Show media information (using mediainfo)
+- Use readline at change directory prompt
+- Jump to prev directories using `cd .....` (with `.` as PWD)
+- Jump to initial directory using `&`
+- Show help, mediainfo and file info in PAGER
+- Several optimizations
+
+-------------------------------------------------------------------------------
+
nnn v1.0
2017-04-13
diff --git a/Makefile b/Makefile
index 457da0c..69e19e3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.0
+VERSION = 1.1
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
diff --git a/README.md b/README.md
index 17819eb..c1a68b4 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
- Quit and change directory (*easy* shell integration)
- Open any file in EDITOR (fallback vi) or PAGER (fallback less)
- VIM-ish keybinds
-- UTF-8 support
+- Unicode support
### Performance
diff --git a/nnn.1 b/nnn.1
index d6eefba..b51450c 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd April 13, 2017
+.Dd May 12, 2017
.Dt NNN 1
.Os
.Sh NAME
diff --git a/nnn.c b/nnn.c
index 76f00ce..5bad5d9 100644
--- a/nnn.c
+++ b/nnn.c
@@ -63,7 +63,7 @@ xprintf(int fd, const char *fmt, ...)
#define DPRINTF_P(x)
#endif /* DEBUG */
-#define VERSION "v1.0"
+#define VERSION "v1.1"
#define LEN(x) (sizeof(x) / sizeof(*(x)))
#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))