Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into fix/component-version-resolusion

This commit is contained in:
Trial97 2024-08-19 22:35:11 +03:00
commit 23c06f23c3
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
87 changed files with 695 additions and 678 deletions

View file

@ -140,6 +140,8 @@ Version::Ptr VersionList::getVersion(const QString& version)
if (!out) {
out = std::make_shared<Version>(m_uid, version);
m_lookup[version] = out;
setupAddedVersion(m_versions.size(), out);
m_versions.append(out);
}
return out;
}