Updated version number to 2.00
Originally committed to SVN as r654.
This commit is contained in:
parent
5366521a33
commit
c0000fd434
1 changed files with 3 additions and 3 deletions
|
@ -79,8 +79,8 @@ struct VersionInfoStruct {
|
||||||
VersionInfoStruct() {
|
VersionInfoStruct() {
|
||||||
wxString SCMStr, VersionStr;
|
wxString SCMStr, VersionStr;
|
||||||
|
|
||||||
// Update this whenever a new version is release
|
// Update this whenever a new version is released
|
||||||
VersionNumber = _T("v1.11");
|
VersionNumber = _T("v2.00");
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
IsDebug = true;
|
IsDebug = true;
|
||||||
#else
|
#else
|
||||||
|
@ -98,7 +98,7 @@ struct VersionInfoStruct {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
IsRelease = SvnRev < 0;
|
IsRelease = SvnRev < 0;
|
||||||
VersionStr = wxString::Format(_T("%s %s"), VersionNumber, IsRelease ? _T("beta") : _T("PRE-RELEASE"));
|
VersionStr = wxString::Format(_T("%s%s"), VersionNumber, IsRelease ? _T("") : _T(" PRE-RELEASE"));
|
||||||
|
|
||||||
LongVersionString = wxString::Format(_T("%s (%s%s, %s)"), VersionStr.c_str(), IsDebug ? _T("debug, ") : _T(""), SCMStr.c_str(), BuildCredit);
|
LongVersionString = wxString::Format(_T("%s (%s%s, %s)"), VersionStr.c_str(), IsDebug ? _T("debug, ") : _T(""), SCMStr.c_str(), BuildCredit);
|
||||||
ShortVersionString = wxString::Format(_T("%s %s%s"), VersionStr.c_str(), SCMStr.c_str(), IsDebug ? _T(" debug") : _T(""));
|
ShortVersionString = wxString::Format(_T("%s %s%s"), VersionStr.c_str(), SCMStr.c_str(), IsDebug ? _T(" debug") : _T(""));
|
||||||
|
|
Loading…
Reference in a new issue