From 8adbc8a21229f6ef02d4aef18e74fabe2f2d7526 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Wed, 6 Dec 2017 01:04:04 +0100 Subject: [PATCH] Added support for VS2017 version 15.5.0. --- include/MUtils/Version.h | 8 +++++++- src/UpdateChecker.cpp | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) 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()) -- 2.11.4.GIT