diff options
author | Tobias Markmann <tm@ayena.de> | 2016-11-17 11:07:38 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-11-17 14:13:56 (GMT) |
commit | dd6f025037faa6b946d71bbd21c729a931178176 (patch) | |
tree | 1dfc992571d6361b4b1641dbd16bd9159934660d /SwifTools/AutoUpdater | |
parent | 8743d5714244a63d301d73fca622f648ac374771 (diff) | |
download | swift-dd6f025037faa6b946d71bbd21c729a931178176.zip swift-dd6f025037faa6b946d71bbd21c729a931178176.tar.bz2 |
Fix version strings generated by GenerateAppCastFeeds.py
Check for updates on start.
Test-Information:
Manually verified a random sample of 50 Swift version string
pairs, that Sparkle currently compares them and detects the
new version.
Change-Id: Ic88a5fdc5feab42cdcb4cc3c2740d4c24718eb7b
Diffstat (limited to 'SwifTools/AutoUpdater')
-rw-r--r-- | SwifTools/AutoUpdater/SparkleAutoUpdater.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SwifTools/AutoUpdater/SparkleAutoUpdater.mm b/SwifTools/AutoUpdater/SparkleAutoUpdater.mm index ed5f094..0c296ee 100644 --- a/SwifTools/AutoUpdater/SparkleAutoUpdater.mm +++ b/SwifTools/AutoUpdater/SparkleAutoUpdater.mm @@ -51,7 +51,7 @@ void SparkleAutoUpdater::setAppcastFeed(const std::string& appcastFeed) { } void SparkleAutoUpdater::checkForUpdates() { - //[d->updater resetUpdateCycle]; // This is useful for testing to force a check ot start. + [d->updater resetUpdateCycle]; [d->updater checkForUpdatesInBackground]; } |