add reset.sh to reset data files // version upgrade
(useful for debugging - reset data to zero)
This commit is contained in:
parent
8265325d2e
commit
c83c9bb9a7
2 changed files with 9 additions and 3 deletions
6
reset.sh
Normal file
6
reset.sh
Normal file
|
@ -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{
|
||||
|
||||
//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";
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue