add reset.sh to reset data files // version upgrade

(useful for debugging - reset data to zero)
master
Dominic Reich 7 years ago
parent 8265325d2e
commit c83c9bb9a7

@ -0,0 +1,6 @@
#!/bin/sh
#rm -f daten.txt
#touch daten.txt
echo > daten.txt
echo 0 > counter.txt
echo OK, all done.

@ -15,18 +15,18 @@
namespace Version{ namespace Version{
//Software Status //Software Status
static const char STATUS[] = "Open Beta"; static const char STATUS[] = "Beta";
static const char STATUS_SHORT[] = "b"; static const char STATUS_SHORT[] = "b";
//Standard Version Type //Standard Version Type
static const long MAJOR = 0; static const long MAJOR = 0;
static const long MINOR = 2; static const long MINOR = 2;
static const long BUILD = 0; static const long BUILD = 1;
//static const long REVISION = 0; //static const long REVISION = 0;
//Miscellaneous Version Types //Miscellaneous Version Types
//static const long BUILDS_COUNT = 0; //static const long BUILDS_COUNT = 0;
static const char FULLVERSION_STRING [] = "0.2.0"; static const char FULLVERSION_STRING [] = "0.2.1";
} }

Loading…
Cancel
Save