-
Sparkle developers, I have recently been working to migrate code on a project to use Sparkle 2.2.2 (up from 1.27.1). Background:
Scenario:
From my description here, is there anything that you think could be problematic from my setup which could be causing this strange behaviour? Many thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
Please check Console.app if you can find any crash logs or relevant console logs to your app's process, or Anything Sparkle related must be called on the main thread, one thing I would see that might be easy to get wrong from a JVM application. I assume you'll run into the same issue if you use legacy Is your app update serving a pkg or a regular app bundle inside the dmg? I don't understand that much how the Electron app is related here. Sparkle doesn't regularly support updating "multiple apps" at once unless one of those apps is bundled inside the other (nor regularly terminates other apps). |
Beta Was this translation helpful? Give feedback.
Please check Console.app if you can find any crash logs or relevant console logs to your app's process, or
Autoupdate
orUpdater.app
. Hopefully JVM doesn't obfuscate crashes.. Although if you aren't even getting download did succeed/fail callbacks, thenAutoupdate
orUpdater.app
shouldn't have spawned / be relevant yet.Anything Sparkle related must be called on the main thread, one thing I would see that might be easy to get wrong from a JVM application.
I assume you'll run into the same issue if you use legacy
SUUpdater
in Sparkle 2? It may help you rule out incorrect API usage since experimentally other code wouldn't have to change for trying to debug this. If the app is available some…