-
In Sparkle version Now, in version 2.4.1 the function I'm just wondering how I can achieve the same behavior as in version 1.8.0 on this new version 2.4.1? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
I don't know what this Checking for updates, letting the user know they can install an update, and then checking for updates again is inefficient if that was what you were previously doing. Gentle update reminders can be done so that the you can provide a gentle reminder like you're doing now and the user when they're ready can go to see the update's release notes and install the update. Otherwise a more advanced use case would be to implement a custom user interface (via SPUUserDriver) instead of using Sparkle's standard UI (not as lightweight). Let Sparkle check for updates for you (re-enable automaticallyChecksForUpdates). If this were a new app I would not recommend using automaticallyChecksForUpdates / automaticallyDownloadsUpdates (read their documentation). But you already have these properties persisted in the user defaults. |
Beta Was this translation helpful? Give feedback.
-
I found the way to use the custom UserDriver, but I get not notified when an update is found. My code is like this:
What could be happening ? |
Beta Was this translation helpful? Give feedback.
If you're working with objc you should pick up the fundamentals and not guess at things.
This is a short subclassing sample: