diff --git a/macOS/AppDelegate.swift b/macOS/AppDelegate.swift index 3894904..b44a890 100644 --- a/macOS/AppDelegate.swift +++ b/macOS/AppDelegate.swift @@ -1,7 +1,13 @@ import Cocoa +import Sparkle class AppDelegate: NSObject, NSApplicationDelegate { func applicationDidFinishLaunching(_ notification: Notification) { - + SUUpdater.shared()?.automaticallyChecksForUpdates = true + /* + Next line prints: + ⚠️ You must specify the URL of the appcast as the SUFeedURL key in either the Info.plist or the user defaults! + */ + SUUpdater.shared()?.checkForUpdates(self) } }