aboutsummaryrefslogtreecommitdiffstats
path: root/lvc/osx/autoupdate.py
blob: 617cb97b4f01d42768152c17a73963bbef959ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
from Foundation import *


def load_sparkle_framework():
    bundlePath = '%s/Sparkle.framework' % Foundation.NSBundle.mainBundle().privateFrameworksPath()
    objc.loadBundle('Sparkle', globals(), bundle_path=bundlePath)


def initialize():
    load_sparkle_framework()
    SUUpdater.sharedUpdater().setAutomaticallyChecksForUpdates_(YES)