commit 9de9d5250c1e9375492f37ef88ef677f66ef60a3
parent 1dc48ba48b1e2b4ec2f96943c0b11dacc6c82a0f
Author: Frederic Cambus <fred@statdns.com>
Date: Thu, 16 Feb 2017 13:27:22 +0100
Updated ChangeLog and tagging 1.10 release
Diffstat:
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,11 @@
+AnsiWeather 1.10 (2017-02-16)
+
+- Add a '-v' option to show version number
+- Exit with error code when an unknown option is invoked
+- Make wind direction customizable
+
+
+
AnsiWeather 1.09 (2016-10-18)
- Allow toggling display of wind, humidity, and pressure data (Thanks
diff --git a/ansiweather b/ansiweather
@@ -2,12 +2,12 @@
###############################################################################
# #
-# AnsiWeather 1.09 #
+# AnsiWeather 1.10 #
# Copyright (c) 2013-2017, Frederic Cambus #
# https://github.com/fcambus/ansiweather #
# #
# Created: 2013-08-29 #
-# Last Updated: 2017-02-02 #
+# Last Updated: 2017-02-16 #
# #
# AnsiWeather is released under the BSD 2-Clause license. #
# See LICENSE file for details. #
@@ -59,7 +59,7 @@ do
h) show_humidity=${OPTARG};;
p) show_pressure=${OPTARG};;
d) show_daylight=${OPTARG};;
- v) echo "AnsiWeather 1.09" && exit 0;;
+ v) echo "AnsiWeather 1.10" && exit 0;;
\?) exit 64;; # EX_USAGE
esac
done