autoupdate.py 340 B

123456789101112
  1. from Foundation import *
  2. def load_sparkle_framework():
  3. bundlePath = '%s/Sparkle.framework' % Foundation.NSBundle.mainBundle().privateFrameworksPath()
  4. objc.loadBundle('Sparkle', globals(), bundle_path=bundlePath)
  5. def initialize():
  6. load_sparkle_framework()
  7. SUUpdater.sharedUpdater().setAutomaticallyChecksForUpdates_(YES)