Sparkle does not check for updates on app launch #2609
-
Description of the problemI am following the Qt example and creating an SPUStandardUpdaterController with initWithStartingUpdater:YES, but nothing happens if I open the app twice, and nothing is printed to Console. If I use the "Check for updates..." menu bar action, it works. Do you use Sandboxing in your app?No Version of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
https://sparkle-project.org/documentation/#6-test-sparkle-out Please first check:
|
Beta Was this translation helpful? Give feedback.
-
The app never asks for permission. The defaults domain is not created or updated until I do a manual update check. When I first run the app, the return value of [_host objectForUserDefaultsKey:SUEnableAutomaticChecksKey] in
In SPUUpdater.m:385 is
Not 'nil' as suggested, even though my Info.plist does not set a value for SUEnableAutomaticChecks, nor SUAutomaticallyUpdate |
Beta Was this translation helpful? Give feedback.
defaults delete your-app-bundle-id
to delete the app defaults to a clean state worked. Thanks