From 9f70af009f48019caa012167b7da1ab23b59d211 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Mon, 9 May 2016 03:10:30 +0100 Subject: [PATCH] Remove prerelease --- Wox/App.xaml.cs | 2 +- Wox/SettingWindow.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Wox/App.xaml.cs b/Wox/App.xaml.cs index 3bd70a046e..e5a7b6ab17 100644 --- a/Wox/App.xaml.cs +++ b/Wox/App.xaml.cs @@ -57,7 +57,7 @@ namespace Wox { try { - using (Updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github, prerelease: true)) + using (Updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github)) { await Updater.UpdateApp(); } diff --git a/Wox/SettingWindow.xaml.cs b/Wox/SettingWindow.xaml.cs index d605ff928a..752d9008b8 100644 --- a/Wox/SettingWindow.xaml.cs +++ b/Wox/SettingWindow.xaml.cs @@ -872,7 +872,7 @@ namespace Wox { try { - using (var updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github, prerelease: true)) + using (var updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github)) { // todo 5/9 the return value of UpdateApp() is NULL, fucking useless! await updater.UpdateApp();