Add information to the about dialog.

This commit is contained in:
Forkk
2014-01-07 18:31:31 -06:00
parent 3202b972f8
commit a14eeab2d6
3 changed files with 118 additions and 24 deletions

View File

@@ -56,6 +56,22 @@ struct MultiMCVersion
return vstr;
}
QString typeName() const
{
switch (type)
{
case Release:
return "Stable Release";
case ReleaseCandidate:
return "Release Candidate";
case Development:
return "Development";
case Custom:
default:
return "Custom";
}
}
//! The major version number.
int major;