From 88f678c1a027999077aed0782502367d215a1d8e Mon Sep 17 00:00:00 2001 From: Martin Woodward Date: Mon, 14 Dec 2015 16:56:32 +0000 Subject: [PATCH] Remove some temp logic for update settings --- .../OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs b/src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs index 3baad59f..dd2c6af1 100644 --- a/src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs +++ b/src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs @@ -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"); }