From ea4ef1655bdadf04c36768f0f641ca7579f754cf Mon Sep 17 00:00:00 2001 From: Kenneth Chew Date: Wed, 20 Apr 2022 00:34:17 -0400 Subject: Create `SparkleUpdater` class for access from Qt/C++ To actually get automatic updates going, all that needs to happen is that `SparkleUpdater` needs to be initialized. The rest of the functions can be connected to elements in the UI. --- launcher/Application.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'launcher/Application.cpp') diff --git a/launcher/Application.cpp b/launcher/Application.cpp index dc8a7b0d..456ea02c 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -544,6 +544,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) { m_settings.reset(new INISettingsObject(BuildConfig.LAUNCHER_CONFIGFILE, this)); // Updates + // Multiple channels are separated by spaces m_settings->registerSetting("UpdateChannel", BuildConfig.VERSION_CHANNEL); m_settings->registerSetting("AutoUpdate", true); -- cgit