2019-01-24 08:43:03 +00:00
|
|
|
|
// 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 09:19:50 +00:00
|
|
|
|
|
2020-06-07 22:39:33 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-02-28 04:09:38 +00:00
|
|
|
|
using osu.Framework;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-10-06 04:00:02 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Platform;
|
2020-05-14 08:40:43 +00:00
|
|
|
|
using osu.Framework.Screens;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2020-10-06 04:00:02 +00:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2020-05-14 08:40:43 +00:00
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Maintenance;
|
2020-05-07 06:07:22 +00:00
|
|
|
|
using osu.Game.Updater;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.General
|
|
|
|
|
{
|
|
|
|
|
public class UpdateSettings : SettingsSubsection
|
|
|
|
|
{
|
2020-05-07 22:35:27 +00:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
|
private UpdateManager updateManager { get; set; }
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
protected override string Header => "Updates";
|
|
|
|
|
|
2020-06-12 09:36:36 +00:00
|
|
|
|
private SettingsButton checkForUpdatesButton;
|
|
|
|
|
|
2020-10-06 12:28:59 +00:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2020-10-06 04:00:02 +00:00
|
|
|
|
private NotificationOverlay notifications { get; set; }
|
|
|
|
|
|
2020-05-14 12:10:04 +00:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2020-05-14 08:40:43 +00:00
|
|
|
|
private void load(Storage storage, OsuConfigManager config, OsuGame game)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-02-28 04:09:38 +00:00
|
|
|
|
Add(new SettingsEnumDropdown<ReleaseStream>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-02-28 04:09:38 +00:00
|
|
|
|
LabelText = "Release stream",
|
2020-10-06 08:18:41 +00:00
|
|
|
|
Current = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
|
2019-02-28 04:09:38 +00:00
|
|
|
|
});
|
|
|
|
|
|
2020-10-06 11:57:39 +00:00
|
|
|
|
if (updateManager?.CanCheckForUpdate == true)
|
2020-05-07 06:07:22 +00:00
|
|
|
|
{
|
2020-06-15 13:19:11 +00:00
|
|
|
|
Add(checkForUpdatesButton = new SettingsButton
|
2020-06-12 09:36:36 +00:00
|
|
|
|
{
|
2020-06-15 13:19:11 +00:00
|
|
|
|
Text = "Check for updates",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = false;
|
2020-10-06 04:00:02 +00:00
|
|
|
|
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(t => Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
if (!t.Result)
|
|
|
|
|
{
|
2020-10-06 12:28:59 +00:00
|
|
|
|
notifications?.Post(new SimpleNotification
|
2020-10-06 04:00:02 +00:00
|
|
|
|
{
|
|
|
|
|
Text = $"You are running the latest release ({game.Version})",
|
|
|
|
|
Icon = FontAwesome.Solid.CheckCircle,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = true;
|
|
|
|
|
}));
|
2020-06-15 13:19:11 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-05-07 06:07:22 +00:00
|
|
|
|
|
2019-02-28 04:09:38 +00:00
|
|
|
|
if (RuntimeInfo.IsDesktop)
|
|
|
|
|
{
|
|
|
|
|
Add(new SettingsButton
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
Text = "Open osu! folder",
|
|
|
|
|
Action = storage.OpenInNativeExplorer,
|
2019-02-28 04:09:38 +00:00
|
|
|
|
});
|
2020-05-14 08:40:43 +00:00
|
|
|
|
|
|
|
|
|
Add(new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Change folder location...",
|
2020-05-14 12:10:04 +00:00
|
|
|
|
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
|
2020-05-14 08:40:43 +00:00
|
|
|
|
});
|
2019-02-28 04:09:38 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|