diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 7acf336..981461d 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,13 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1911) + #if (_MSC_VER == 1912) + #if(_MSC_FULL_VER == 191225830) + "MSVC 2017.5"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1911) #if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547)) "MSVC 2017.4"; #elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508)) diff --git a/src/UpdateChecker.cpp b/src/UpdateChecker.cpp index 6481ca1..c453204 100644 --- a/src/UpdateChecker.cpp +++ b/src/UpdateChecker.cpp @@ -311,8 +311,8 @@ void MUtils::UpdateChecker::testMirrorsList(void) mirrorList << QString::fromLatin1(update_mirrors[i]); } - qDebug("\n[Known Hosts]"); - log("Testing all known hosts...", "", "---"); + qDebug("\n[Mirror Sites]"); + log("Testing all known mirror sites...", "", "---"); UpdateCheckerInfo updateInfo; while (!mirrorList.isEmpty())