Updated version number to 2.00

Originally committed to SVN as r654.
This commit is contained in:
Rodrigo Braz Monteiro 2006-12-29 00:17:03 +00:00
parent 5366521a33
commit c0000fd434
1 changed files with 3 additions and 3 deletions

View File

@ -79,8 +79,8 @@ struct VersionInfoStruct {
VersionInfoStruct() {
wxString SCMStr, VersionStr;
// Update this whenever a new version is release
VersionNumber = _T("v1.11");
// Update this whenever a new version is released
VersionNumber = _T("v2.00");
#ifdef _DEBUG
IsDebug = true;
#else
@ -98,7 +98,7 @@ struct VersionInfoStruct {
#endif
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);
ShortVersionString = wxString::Format(_T("%s %s%s"), VersionStr.c_str(), SCMStr.c_str(), IsDebug ? _T(" debug") : _T(""));