chore: Re-simplify IndexVersionType and MessageLevel with c++20
This sets our compiler requirements to gcc 11 and clang 13. If we forgo the use of `using enum` we can drop to gcc 10 and clang 10 but that means using `MessageLevel::Enum::Unknown` for direct enum access Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
@@ -297,8 +297,8 @@ void ResourcePage::versionListUpdated(const QModelIndex& index)
|
||||
continue;
|
||||
|
||||
auto versionText = version.version;
|
||||
if (version.version_type != ModPlatform::IndexedVersionType::Unknown) {
|
||||
versionText += QString(" [%1]").arg(ModPlatform::indexedVersionTypeToString(version.version_type));
|
||||
if (version.version_type.isValid()) {
|
||||
versionText += QString(" [%1]").arg(version.version_type.toString());
|
||||
}
|
||||
if (version.fileId == installedVersion) {
|
||||
versionText += tr(" [installed]", "Mod version select");
|
||||
|
||||
Reference in New Issue
Block a user