From c83c9bb9a77d3122a0db29c388cab818721a163e Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Tue, 15 Aug 2017 20:15:58 +0200 Subject: [PATCH] add reset.sh to reset data files // version upgrade (useful for debugging - reset data to zero) --- reset.sh | 6 ++++++ version.h | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 reset.sh diff --git a/reset.sh b/reset.sh new file mode 100644 index 0000000..dffec8a --- /dev/null +++ b/reset.sh @@ -0,0 +1,6 @@ +#!/bin/sh +#rm -f daten.txt +#touch daten.txt +echo > daten.txt +echo 0 > counter.txt +echo OK, all done. diff --git a/version.h b/version.h index cb457c5..7ec1751 100644 --- a/version.h +++ b/version.h @@ -15,18 +15,18 @@ namespace Version{ //Software Status - static const char STATUS[] = "Open Beta"; + static const char STATUS[] = "Beta"; static const char STATUS_SHORT[] = "b"; //Standard Version Type static const long MAJOR = 0; static const long MINOR = 2; - static const long BUILD = 0; + static const long BUILD = 1; //static const long REVISION = 0; //Miscellaneous Version Types //static const long BUILDS_COUNT = 0; - static const char FULLVERSION_STRING [] = "0.2.0"; + static const char FULLVERSION_STRING [] = "0.2.1"; }