Skip to content
Extraits de code Groupes Projets
Valider c0000fd4 rédigé par Rodrigo Braz Monteiro's avatar Rodrigo Braz Monteiro
Parcourir les fichiers

Updated version number to 2.00

Originally committed to SVN as r654.
parent 5366521a
Branches
Étiquettes
Aucune requête de fusion associée trouvée
...@@ -79,8 +79,8 @@ struct VersionInfoStruct { ...@@ -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 { ...@@ -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(""));
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter