1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 05:27:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs

63 lines
2.1 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System.Threading.Tasks;
using osu.Framework;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Platform;
2020-05-14 16:40:43 +08:00
using osu.Framework.Screens;
2018-04-13 17:19:50 +08:00
using osu.Game.Configuration;
2020-05-14 16:40:43 +08:00
using osu.Game.Overlays.Settings.Sections.Maintenance;
2020-05-07 14:07:22 +08:00
using osu.Game.Updater;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.General
{
public class UpdateSettings : SettingsSubsection
{
2020-05-08 06:35:27 +08:00
[Resolved(CanBeNull = true)]
private UpdateManager updateManager { get; set; }
2018-04-13 17:19:50 +08:00
protected override string Header => "Updates";
private SettingsButton checkForUpdatesButton;
2020-05-14 20:10:04 +08:00
[BackgroundDependencyLoader(true)]
2020-05-14 16:40:43 +08:00
private void load(Storage storage, OsuConfigManager config, OsuGame game)
2018-04-13 17:19:50 +08:00
{
Add(new SettingsEnumDropdown<ReleaseStream>
2018-04-13 17:19:50 +08:00
{
LabelText = "Release stream",
Bindable = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
});
2020-06-15 21:23:06 +08:00
if (updateManager?.CanCheckForUpdate == true)
2020-05-07 14:07:22 +08:00
{
Add(checkForUpdatesButton = new SettingsButton
{
Text = "Check for updates",
Action = () =>
{
checkForUpdatesButton.Enabled.Value = false;
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(t => Schedule(() => checkForUpdatesButton.Enabled.Value = true));
}
});
}
2020-05-07 14:07:22 +08:00
if (RuntimeInfo.IsDesktop)
{
Add(new SettingsButton
2018-04-13 17:19:50 +08:00
{
Text = "Open osu! folder",
Action = storage.OpenInNativeExplorer,
});
2020-05-14 16:40:43 +08:00
Add(new SettingsButton
{
Text = "Change folder location...",
2020-05-14 20:10:04 +08:00
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
2020-05-14 16:40:43 +08:00
});
}
2018-04-13 17:19:50 +08:00
}
}
}