Remove some temp logic for update settings

This commit is contained in:
Martin Woodward 2015-12-14 16:56:32 +00:00
parent b6fb2b8013
commit 88f678c1a0
1 changed files with 2 additions and 5 deletions

View File

@ -13,10 +13,7 @@ namespace OpenLiveWriter.PostEditor.Updates
{
static UpdateSettings()
{
// Force these settings temporarily in case other devs already got defaults set.
// AutoUpdate = true;
// CheckForBetaUpdates = false;
// UpdateDownloadUrl = UPDATEDOWNLOADURL;
// Force these settings temporarily in case people already got defaults set.
BetaUpdateDownloadUrl = BETAUPDATEDOWNLOADURL;
}
@ -50,7 +47,7 @@ namespace OpenLiveWriter.PostEditor.Updates
private const string CHECKUPDATESURL = "CheckUpdatesUrl";
private const string UPDATEDOWNLOADURL = "https://openlivewriter.azureedge.net/stable/Releases"; // Location of signed builds
private const string CHECKBETAUPDATESURL = "CheckBetaUpdatesUrl";
private const string BETAUPDATEDOWNLOADURL = "https://olw.blob.core.windows.net/nightly/Releases/"; // Location of CI builds
private const string BETAUPDATEDOWNLOADURL = "https://olw.blob.core.windows.net/nightly/Releases"; // Location of CI builds
private static readonly SettingsPersisterHelper settings = ApplicationEnvironment.UserSettingsRoot.GetSubSettings("Updates");
}