mirror of https://github.com/odrling/Aegisub
Modified version string to say "RELEASE PREVIEW" instead of "PRE-RELEASE".
Originally committed to SVN as r1847.
This commit is contained in:
parent
db1de1a8e0
commit
f6a7c5c98a
|
@ -112,7 +112,7 @@ struct VersionInfoStruct {
|
||||||
#else
|
#else
|
||||||
IsRelease = false;
|
IsRelease = false;
|
||||||
#endif
|
#endif
|
||||||
VersionStr = wxString::Format(_T("%s%s"), VersionNumber, IsRelease ? _T("") : _T(" PRE-RELEASE"));
|
VersionStr = wxString::Format(_T("%s%s"), VersionNumber, IsRelease ? _T("") : _T(" RELEASE PREVIEW"));
|
||||||
|
|
||||||
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 New Issue