summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--README4
-rw-r--r--configure.ac2
-rwxr-xr-xstatic/build.sh5
4 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 263ec37..d81e7c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1.14.1 - 2019-08-05
+ - Fix occasional early exit on OS X
+ - Fix --exclude-caches
+ - Improve handling of out-of-memory situations
+
1.14 - 2019-02-04
- Add mtime display and sorting (Alex Wilson)
- Add (limited) --follow-symlinks option (Simon Doppler)
diff --git a/README b/README
index 3ddfd9e..9385f8a 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-ncdu 1.14
-=========
+ncdu 1.14.1
+===========
DESCRIPTION
diff --git a/configure.ac b/configure.ac
index ab05e8f..d6b98ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT(ncdu, 1.14, projects@yorhel.nl)
+AC_INIT(ncdu, 1.14.1, projects@yorhel.nl)
AC_CONFIG_SRCDIR([src/global.h])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([foreign subdir-objects])
diff --git a/static/build.sh b/static/build.sh
index ff915e0..ecf4385 100755
--- a/static/build.sh
+++ b/static/build.sh
@@ -9,7 +9,7 @@
#
# Usage:
# ./build.sh $arch
-# where $arch = 'arm' or 'i486'
+# where $arch = 'arm', 'i486' or 'x86_64'
MUSL_CROSS_PATH=/opt/cross
NCURSES_VERSION=6.0
@@ -80,7 +80,7 @@ getncurses() {
--without-tests --without-curses-h --without-pkg-config --without-shared --without-debug\
--without-gpm --without-sysmouse --enable-widec --with-default-terminfo-dir=/usr/share/terminfo\
--with-terminfo-dirs=/usr/share/terminfo:/lib/terminfo:/usr/local/share/terminfo\
- --with-fallbacks="screen linux vt100 xterm" --host=$HOST\
+ --with-fallbacks="screen linux vt100 xterm xterm-256color" --host=$HOST\
CPPFLAGS=-D_GNU_SOURCE || exit
make || exit
make install.libs || exit
@@ -111,6 +111,7 @@ buildarch() {
case $TARGET in
arm) HOST=arm-musl-linuxeabi DIR=arm-linux-musleabi ;;
i486) HOST=i486-musl-linux DIR=i486-linux-musl ;;
+ x86_64) HOST=x86_64-musl-linux DIR=x86_64-linux-musl ;;
*) echo "Unknown target: $TARGET" ;;
esac
PREFIX="`pwd`/$TARGET/inst"