mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 03:33:06 +02:00
fix mac update issues
This commit is contained in:
parent
da0ba71373
commit
5d69d554f9
3 changed files with 3 additions and 5 deletions
|
@ -11,7 +11,6 @@
|
|||
|
||||
Launcher::Launcher(int& argc, char**argv) : QGuiApplication(argc, argv) {
|
||||
_launcherState = std::make_shared<LauncherState>();
|
||||
|
||||
QString platform;
|
||||
#ifdef Q_OS_WIN
|
||||
platform = "Windows";
|
||||
|
|
|
@ -195,6 +195,8 @@ void LauncherState::requestBuilds() {
|
|||
_latestBuilds = request->getLatestBuilds();
|
||||
|
||||
CommandlineOptions* options = CommandlineOptions::getInstance();
|
||||
qDebug() << "Latest version: " << _latestBuilds.launcherBuild.latestVersion
|
||||
<< "Curretn version: " << getBuildVersion().toInt();
|
||||
if (shouldDownloadLauncher() && !options->contains("--noUpdate")) {
|
||||
downloadLauncher();
|
||||
return;
|
||||
|
@ -211,7 +213,6 @@ QString LauncherState::getBuildVersion() {
|
|||
if (processEnvironment.contains("HQ_LAUNCHER_BUILD_VERSION")) {
|
||||
buildVersion = processEnvironment.value("HQ_LAUNCHER_BUILD_VERSION");
|
||||
}
|
||||
|
||||
return buildVersion;
|
||||
}
|
||||
|
||||
|
|
|
@ -50,9 +50,7 @@ int main(int argc, char *argv[]) {
|
|||
if (hasSuffix(argv[1], "app") && hasSuffix(argv[2], "app")) {
|
||||
bool success = swapLaunchers(argv[1], argv[2]);
|
||||
qDebug() << "Successfully installed Launcher: " << success;
|
||||
if (!success) {
|
||||
options->append("--noUpdate");
|
||||
}
|
||||
options->append("--noUpdate");
|
||||
didUpdate = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue