Qt: Show correct channel for modern macOS builds

This commit is contained in:
Vicki Pfau 2022-06-16 15:41:28 -07:00
parent 07221181ea
commit ddccbee47b
1 changed files with 6 additions and 0 deletions

View File

@ -150,7 +150,13 @@ const char* ApplicationUpdater::platform() {
return uninstallInfo.exists() ? "win32-installer" : "win32";
#endif
#elif defined(Q_OS_MACOS)
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
// Modern macOS build
return "macos";
#else
// Legacy "OS X" build
return "osx";
#endif
#elif defined(Q_OS_LINUX) && defined(__x86_64__)
return "appimage-x64";
#else