mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-21 17:45:11 +00:00
gui: Disable usage of updater module for the time being (#20)
This commit is contained in:
parent
7bb6d92d5a
commit
6b6176afe1
2 changed files with 5 additions and 0 deletions
|
@ -193,6 +193,7 @@
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem VerticalAlignment="Center" Header="{locale:Locale MenuBarHelp}">
|
<MenuItem VerticalAlignment="Center" Header="{locale:Locale MenuBarHelp}">
|
||||||
|
<!--
|
||||||
<MenuItem
|
<MenuItem
|
||||||
Name="UpdateMenuItem"
|
Name="UpdateMenuItem"
|
||||||
IsEnabled="{Binding CanUpdate}"
|
IsEnabled="{Binding CanUpdate}"
|
||||||
|
@ -200,6 +201,7 @@
|
||||||
Header="{locale:Locale MenuBarHelpCheckForUpdates}"
|
Header="{locale:Locale MenuBarHelpCheckForUpdates}"
|
||||||
ToolTip.Tip="{locale:Locale CheckUpdatesTooltip}" />
|
ToolTip.Tip="{locale:Locale CheckUpdatesTooltip}" />
|
||||||
<Separator />
|
<Separator />
|
||||||
|
-->
|
||||||
<MenuItem
|
<MenuItem
|
||||||
Click="OpenAboutWindow"
|
Click="OpenAboutWindow"
|
||||||
Header="{locale:Locale MenuBarHelpAbout}"
|
Header="{locale:Locale MenuBarHelpAbout}"
|
||||||
|
|
|
@ -361,6 +361,8 @@ namespace Ryujinx.Ava.UI.Windows
|
||||||
await Dispatcher.UIThread.InvokeAsync(async () => await UserErrorDialog.ShowUserErrorDialog(UserError.NoKeys));
|
await Dispatcher.UIThread.InvokeAsync(async () => await UserErrorDialog.ShowUserErrorDialog(UserError.NoKeys));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MIRROR ADJ: We aren't using semver release tags for the time being
|
||||||
|
/*
|
||||||
if (ConfigurationState.Instance.CheckUpdatesOnStart.Value && Updater.CanUpdate(false))
|
if (ConfigurationState.Instance.CheckUpdatesOnStart.Value && Updater.CanUpdate(false))
|
||||||
{
|
{
|
||||||
await Updater.BeginParse(this, false).ContinueWith(task =>
|
await Updater.BeginParse(this, false).ContinueWith(task =>
|
||||||
|
@ -368,6 +370,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||||
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
||||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Load()
|
private void Load()
|
||||||
|
|
Loading…
Reference in a new issue