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

View file

@ -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(""));