-
I am trying to provide an app settings panel for configuring updates. There are a couple of Info.plist settings which seem to have overlapping functionality, and the documentation isn't as clear as maybe it could be.
Would someone be able to explain the difference between these two flags? On a related note, if I add Thanks so much. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
With
No. This may be your own doing. Sparkle (at least 2) does not set |
Beta Was this translation helpful? Give feedback.
-
Thank you, this is really helpful. I am hoping to be able to provide some more granular user facing options along the lines of what is indicated below, so understanding each of these keys is quite important. I think what I might be looking to do would work by settings Manual -
Thanks for the clarification. I did try clearing user defaults a few times, and launching again, so I will have to check again. Appreciate the detailed response. |
Beta Was this translation helpful? Give feedback.
With
SUAllowsAutomaticUpdates
this controls whether or not Sparkle is allowed to show an option to the user that allows them to turn on/off automatic downloading/installing of updates. You usually don't need to configure this, especially if you want to allow your users to opt into automatic downloading/installing and let Sparkle schedule checking for updates automatically.SUAutomaticallyUpdate
specifies by default if Sparkle should try to automatically download and install updates when Sparkle checks for updates (default is NO). Otherwise Sparkle may always present the update to the user when it checks for updates in the background.SUEnableAutomaticChecks
specifies if Sparkle schedules …