Skip to content

Commit

Permalink
Corrected version number
Browse files Browse the repository at this point in the history
  • Loading branch information
BeneSim committed Jun 18, 2017
1 parent 17ff49f commit 9744470
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#define VERSION_H

int const VERSION_MAJOR = 1;
int const VERSION_MINOR = 0;
int const VERSION_MINOR = 1;
int const VERSION_PATCH = 0;
bool const VERSION_PRERELEASE = false;
bool const VERSION_PRERELEASE = true;

QString const VERSION_STRING = VERSION_PRERELEASE ? QString("%1.%2.%3 (Beta)").arg(VERSION_MAJOR).arg(VERSION_MINOR).arg(VERSION_PATCH) : QString("%1.%2.%3").arg(VERSION_MAJOR).arg(VERSION_MINOR).arg(VERSION_PATCH);

Expand Down

0 comments on commit 9744470

Please sign in to comment.