Merge remote-tracking branch 'refs/remotes/ppy/master' into changelog-stream-area-refactor

This commit is contained in:
Andrei Zavatski 2020-02-29 02:17:37 +03:00
commit 3c8ccf3c7d
15 changed files with 296 additions and 132 deletions

View File

@ -52,6 +52,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" /> <PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" />
<PackageReference Include="ppy.osu.Framework.Android" Version="2020.225.0" /> <PackageReference Include="ppy.osu.Framework.Android" Version="2020.228.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -0,0 +1,19 @@
// 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.
using osu.Game.Online.Multiplayer;
namespace osu.Game.Online.API.Requests
{
public class GetRoomRequest : APIRequest<Room>
{
private readonly int roomId;
public GetRoomRequest(int roomId)
{
this.roomId = roomId;
}
protected override string Target => $"rooms/{roomId}";
}
}

View File

@ -59,8 +59,8 @@ namespace osu.Game.Online.Multiplayer
public Bindable<int?> MaxParticipants { get; private set; } = new Bindable<int?>(); public Bindable<int?> MaxParticipants { get; private set; } = new Bindable<int?>();
[Cached] [Cached]
[JsonIgnore] [JsonProperty("recent_participants")]
public BindableList<User> Participants { get; private set; } = new BindableList<User>(); public BindableList<User> RecentParticipants { get; private set; } = new BindableList<User>();
[Cached] [Cached]
public Bindable<int> ParticipantCount { get; private set; } = new Bindable<int>(); public Bindable<int> ParticipantCount { get; private set; } = new Bindable<int>();
@ -124,10 +124,10 @@ namespace osu.Game.Online.Multiplayer
Playlist.AddRange(other.Playlist); Playlist.AddRange(other.Playlist);
} }
if (!Participants.SequenceEqual(other.Participants)) if (!RecentParticipants.SequenceEqual(other.RecentParticipants))
{ {
Participants.Clear(); RecentParticipants.Clear();
Participants.AddRange(other.Participants); RecentParticipants.AddRange(other.RecentParticipants);
} }
Position = other.Position; Position = other.Position;

View File

@ -22,11 +22,6 @@ namespace osu.Game.Overlays.Settings.Sections.Debug
Bindable = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowLogOverlay) Bindable = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowLogOverlay)
}, },
new SettingsCheckbox new SettingsCheckbox
{
LabelText = "Performance logging",
Bindable = config.GetBindable<bool>(DebugSetting.PerformanceLogging)
},
new SettingsCheckbox
{ {
LabelText = "Bypass front-to-back render pass", LabelText = "Bypass front-to-back render pass",
Bindable = config.GetBindable<bool>(DebugSetting.BypassFrontToBackPass) Bindable = config.GetBindable<bool>(DebugSetting.BypassFrontToBackPass)

View File

@ -4,6 +4,7 @@
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Configuration; using osu.Framework.Configuration;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Platform;
using osu.Game.Configuration; using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Graphics namespace osu.Game.Overlays.Settings.Sections.Graphics
@ -24,6 +25,11 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
LabelText = "Frame limiter", LabelText = "Frame limiter",
Bindable = config.GetBindable<FrameSync>(FrameworkSetting.FrameSync) Bindable = config.GetBindable<FrameSync>(FrameworkSetting.FrameSync)
}, },
new SettingsEnumDropdown<ExecutionMode>
{
LabelText = "Threading mode",
Bindable = config.GetBindable<ExecutionMode>(FrameworkSetting.ExecutionMode)
},
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = "Show FPS", LabelText = "Show FPS",

View File

@ -16,7 +16,7 @@ namespace osu.Game.Screens.Multi.Components
} }
public OverlinedParticipants(Direction direction) public OverlinedParticipants(Direction direction)
: base("Participants") : base("Recent participants")
{ {
OsuScrollContainer scroll; OsuScrollContainer scroll;
ParticipantsList list; ParticipantsList list;

View File

@ -1,15 +1,13 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // 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. // See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor; using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Shapes;
using osu.Framework.Threading;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Users; using osu.Game.Users;
using osu.Game.Users.Drawables; using osu.Game.Users.Drawables;
using osuTK; using osuTK;
@ -26,7 +24,9 @@ namespace osu.Game.Screens.Multi.Components
set set
{ {
base.RelativeSizeAxes = value; base.RelativeSizeAxes = value;
fill.RelativeSizeAxes = value;
if (tiles != null)
tiles.RelativeSizeAxes = value;
} }
} }
@ -36,83 +36,75 @@ namespace osu.Game.Screens.Multi.Components
set set
{ {
base.AutoSizeAxes = value; base.AutoSizeAxes = value;
fill.AutoSizeAxes = value;
if (tiles != null)
tiles.AutoSizeAxes = value;
} }
} }
private FillDirection direction = FillDirection.Full;
public FillDirection Direction public FillDirection Direction
{ {
get => fill.Direction; get => direction;
set => fill.Direction = value; set
} {
direction = value;
private readonly FillFlowContainer fill; if (tiles != null)
tiles.Direction = value;
public ParticipantsList() }
{
InternalChild = fill = new FillFlowContainer { Spacing = new Vector2(10) };
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load() private void load()
{ {
RoomID.BindValueChanged(_ => updateParticipants(), true); RecentParticipants.CollectionChanged += (_, __) => updateParticipants();
updateParticipants();
} }
[Resolved] private ScheduledDelegate scheduledUpdate;
private IAPIProvider api { get; set; } private FillFlowContainer<UserTile> tiles;
private GetRoomScoresRequest request;
private void updateParticipants() private void updateParticipants()
{ {
var roomId = RoomID.Value ?? 0; scheduledUpdate?.Cancel();
scheduledUpdate = Schedule(() =>
request?.Cancel();
// nice little progressive fade
int time = 500;
foreach (var c in fill.Children)
{ {
c.Delay(500 - time).FadeOut(time, Easing.Out); tiles?.FadeOut(250, Easing.Out).Expire();
time = Math.Max(20, time - 20);
c.Expire();
}
if (roomId == 0) return; tiles = new FillFlowContainer<UserTile>
{
Alpha = 0,
Direction = Direction,
AutoSizeAxes = AutoSizeAxes,
RelativeSizeAxes = RelativeSizeAxes,
Spacing = new Vector2(10)
};
request = new GetRoomScoresRequest(roomId); for (int i = 0; i < RecentParticipants.Count; i++)
request.Success += scores => Schedule(() => tiles.Add(new UserTile { User = RecentParticipants[i] });
{
if (roomId != RoomID.Value)
return;
fill.Clear(); AddInternal(tiles);
foreach (var s in scores)
fill.Add(new UserTile(s.User));
fill.FadeInFromZero(1000, Easing.OutQuint); tiles.Delay(250).FadeIn(250, Easing.OutQuint);
}); });
api.Queue(request);
}
protected override void Dispose(bool isDisposing)
{
request?.Cancel();
base.Dispose(isDisposing);
} }
private class UserTile : CompositeDrawable, IHasTooltip private class UserTile : CompositeDrawable, IHasTooltip
{ {
private readonly User user; public User User
{
public string TooltipText => user.Username; get => avatar.User;
set => avatar.User = value;
public UserTile(User user) }
public string TooltipText => User?.Username ?? string.Empty;
private readonly UpdateableAvatar avatar;
public UserTile()
{ {
this.user = user;
Size = new Vector2(TILE_SIZE); Size = new Vector2(TILE_SIZE);
CornerRadius = 5f; CornerRadius = 5f;
Masking = true; Masking = true;
@ -124,11 +116,7 @@ namespace osu.Game.Screens.Multi.Components
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = OsuColour.FromHex(@"27252d"), Colour = OsuColour.FromHex(@"27252d"),
}, },
new UpdateableAvatar avatar = new UpdateableAvatar { RelativeSizeAxes = Axes.Both },
{
RelativeSizeAxes = Axes.Both,
User = user,
},
}; };
} }
} }

View File

@ -28,7 +28,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
private Bindable<FilterCriteria> filter { get; set; } private Bindable<FilterCriteria> filter { get; set; }
[Resolved] [Resolved]
private Bindable<Room> currentRoom { get; set; } private Bindable<Room> selectedRoom { get; set; }
[Resolved] [Resolved]
private IRoomManager roomManager { get; set; } private IRoomManager roomManager { get; set; }
@ -122,7 +122,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
else else
roomFlow.Children.ForEach(r => r.State = r.Room == room ? SelectionState.Selected : SelectionState.NotSelected); roomFlow.Children.ForEach(r => r.State = r.Room == room ? SelectionState.Selected : SelectionState.NotSelected);
currentRoom.Value = room; selectedRoom.Value = room;
} }
protected override void Dispose(bool isDisposing) protected override void Dispose(bool isDisposing)

View File

@ -26,7 +26,7 @@ namespace osu.Game.Screens.Multi.Lounge
private readonly LoadingLayer loadingLayer; private readonly LoadingLayer loadingLayer;
[Resolved] [Resolved]
private Bindable<Room> currentRoom { get; set; } private Bindable<Room> selectedRoom { get; set; }
public LoungeSubScreen() public LoungeSubScreen()
{ {
@ -101,8 +101,8 @@ namespace osu.Game.Screens.Multi.Lounge
{ {
base.OnResuming(last); base.OnResuming(last);
if (currentRoom.Value?.RoomID.Value == null) if (selectedRoom.Value?.RoomID.Value == null)
currentRoom.Value = new Room(); selectedRoom.Value = new Room();
onReturning(); onReturning();
} }
@ -143,7 +143,7 @@ namespace osu.Game.Screens.Multi.Lounge
if (!this.IsCurrentScreen()) if (!this.IsCurrentScreen())
return; return;
currentRoom.Value = room; selectedRoom.Value = room;
this.Push(new MatchSubScreen(room)); this.Push(new MatchSubScreen(room));
} }

View File

@ -48,7 +48,7 @@ namespace osu.Game.Screens.Multi
private readonly IBindable<bool> isIdle = new BindableBool(); private readonly IBindable<bool> isIdle = new BindableBool();
[Cached] [Cached]
private readonly Bindable<Room> currentRoom = new Bindable<Room>(); private readonly Bindable<Room> selectedRoom = new Bindable<Room>();
[Cached] [Cached]
private readonly Bindable<FilterCriteria> currentFilter = new Bindable<FilterCriteria>(new FilterCriteria()); private readonly Bindable<FilterCriteria> currentFilter = new Bindable<FilterCriteria>(new FilterCriteria());
@ -163,14 +163,39 @@ namespace osu.Game.Screens.Multi
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{ {
var dependencies = new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent)); var dependencies = new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent));
dependencies.Model.BindTo(currentRoom); dependencies.Model.BindTo(selectedRoom);
return dependencies; return dependencies;
} }
private void updatePollingRate(bool idle) private void updatePollingRate(bool idle)
{ {
roomManager.TimeBetweenPolls = !this.IsCurrentScreen() || !(screenStack.CurrentScreen is LoungeSubScreen) ? 0 : (idle ? 120000 : 15000); if (!this.IsCurrentScreen())
Logger.Log($"Polling adjusted to {roomManager.TimeBetweenPolls}"); {
roomManager.TimeBetweenListingPolls = 0;
roomManager.TimeBetweenSelectionPolls = 0;
}
else
{
switch (screenStack.CurrentScreen)
{
case LoungeSubScreen _:
roomManager.TimeBetweenListingPolls = idle ? 120000 : 15000;
roomManager.TimeBetweenSelectionPolls = idle ? 120000 : 15000;
break;
case MatchSubScreen _:
roomManager.TimeBetweenListingPolls = 0;
roomManager.TimeBetweenSelectionPolls = idle ? 30000 : 5000;
break;
default:
roomManager.TimeBetweenListingPolls = 0;
roomManager.TimeBetweenSelectionPolls = 0;
break;
}
}
Logger.Log($"Polling adjusted (listing: {roomManager.TimeBetweenListingPolls}, selection: {roomManager.TimeBetweenSelectionPolls})");
} }
/// <summary> /// <summary>
@ -222,6 +247,8 @@ namespace osu.Game.Screens.Multi
base.OnResuming(last); base.OnResuming(last);
beginHandlingTrack(); beginHandlingTrack();
updatePollingRate(isIdle.Value);
} }
public override void OnSuspending(IScreen next) public override void OnSuspending(IScreen next)
@ -231,7 +258,7 @@ namespace osu.Game.Screens.Multi
endHandlingTrack(); endHandlingTrack();
roomManager.TimeBetweenPolls = 0; updatePollingRate(isIdle.Value);
} }
public override bool OnExiting(IScreen next) public override bool OnExiting(IScreen next)

View File

@ -31,7 +31,7 @@ namespace osu.Game.Screens.Multi
protected BindableList<PlaylistItem> Playlist { get; private set; } protected BindableList<PlaylistItem> Playlist { get; private set; }
[Resolved(typeof(Room))] [Resolved(typeof(Room))]
protected BindableList<User> Participants { get; private set; } protected BindableList<User> RecentParticipants { get; private set; }
[Resolved(typeof(Room))] [Resolved(typeof(Room))]
protected Bindable<int> ParticipantCount { get; private set; } protected Bindable<int> ParticipantCount { get; private set; }

View File

@ -2,10 +2,13 @@
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using System; using System;
using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Logging; using osu.Framework.Logging;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Online; using osu.Game.Online;
@ -17,20 +20,24 @@ using osu.Game.Screens.Multi.Lounge.Components;
namespace osu.Game.Screens.Multi namespace osu.Game.Screens.Multi
{ {
public class RoomManager : PollingComponent, IRoomManager public class RoomManager : CompositeDrawable, IRoomManager
{ {
public event Action RoomsUpdated; public event Action RoomsUpdated;
private readonly BindableList<Room> rooms = new BindableList<Room>(); private readonly BindableList<Room> rooms = new BindableList<Room>();
public IBindableList<Room> Rooms => rooms; public IBindableList<Room> Rooms => rooms;
private Room joinedRoom; public double TimeBetweenListingPolls
{
get => listingPollingComponent.TimeBetweenPolls;
set => listingPollingComponent.TimeBetweenPolls = value;
}
[Resolved] public double TimeBetweenSelectionPolls
private Bindable<FilterCriteria> currentFilter { get; set; } {
get => selectionPollingComponent.TimeBetweenPolls;
[Resolved] set => selectionPollingComponent.TimeBetweenPolls = value;
private IAPIProvider api { get; set; } }
[Resolved] [Resolved]
private RulesetStore rulesets { get; set; } private RulesetStore rulesets { get; set; }
@ -38,14 +45,26 @@ namespace osu.Game.Screens.Multi
[Resolved] [Resolved]
private BeatmapManager beatmaps { get; set; } private BeatmapManager beatmaps { get; set; }
[BackgroundDependencyLoader] [Resolved]
private void load() private IAPIProvider api { get; set; }
[Resolved]
private Bindable<Room> selectedRoom { get; set; }
private readonly ListingPollingComponent listingPollingComponent;
private readonly SelectionPollingComponent selectionPollingComponent;
private Room joinedRoom;
public RoomManager()
{ {
currentFilter.BindValueChanged(_ => RelativeSizeAxes = Axes.Both;
InternalChildren = new Drawable[]
{ {
if (IsLoaded) listingPollingComponent = new ListingPollingComponent { RoomsReceived = onListingReceived },
PollImmediately(); selectionPollingComponent = new SelectionPollingComponent { RoomReceived = onSelectedRoomReceived }
}); };
} }
protected override void Dispose(bool isDisposing) protected override void Dispose(bool isDisposing)
@ -116,45 +135,52 @@ namespace osu.Game.Screens.Multi
joinedRoom = null; joinedRoom = null;
} }
private GetRoomsRequest pollReq; /// <summary>
/// Invoked when the listing of all <see cref="Room"/>s is received from the server.
protected override Task Poll() /// </summary>
/// <param name="listing">The listing.</param>
private void onListingReceived(List<Room> listing)
{ {
if (!api.IsLoggedIn) // Remove past matches
return base.Poll(); foreach (var r in rooms.ToList())
var tcs = new TaskCompletionSource<bool>();
pollReq?.Cancel();
pollReq = new GetRoomsRequest(currentFilter.Value.PrimaryFilter);
pollReq.Success += result =>
{ {
// Remove past matches if (listing.All(e => e.RoomID.Value != r.RoomID.Value))
foreach (var r in rooms.ToList()) rooms.Remove(r);
}
for (int i = 0; i < listing.Count; i++)
{
if (selectedRoom.Value?.RoomID?.Value == listing[i].RoomID.Value)
{ {
if (result.All(e => e.RoomID.Value != r.RoomID.Value)) // The listing request contains less data than the selection request, so data from the selection request is always preferred while the room is selected.
rooms.Remove(r); continue;
} }
for (int i = 0; i < result.Count; i++) var r = listing[i];
r.Position.Value = i;
update(r, r);
addRoom(r);
}
RoomsUpdated?.Invoke();
}
/// <summary>
/// Invoked when a <see cref="Room"/> is received from the server.
/// </summary>
/// <param name="toUpdate">The received <see cref="Room"/>.</param>
private void onSelectedRoomReceived(Room toUpdate)
{
foreach (var room in rooms)
{
if (room.RoomID.Value == toUpdate.RoomID.Value)
{ {
var r = result[i]; toUpdate.Position.Value = room.Position.Value;
r.Position.Value = i; update(room, toUpdate);
break;
update(r, r);
addRoom(r);
} }
}
RoomsUpdated?.Invoke();
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
api.Queue(pollReq);
return tcs.Task;
} }
/// <summary> /// <summary>
@ -182,5 +208,100 @@ namespace osu.Game.Screens.Multi
else else
existing.CopyFrom(room); existing.CopyFrom(room);
} }
private class SelectionPollingComponent : PollingComponent
{
public Action<Room> RoomReceived;
[Resolved]
private IAPIProvider api { get; set; }
[Resolved]
private Bindable<Room> selectedRoom { get; set; }
[BackgroundDependencyLoader]
private void load()
{
selectedRoom.BindValueChanged(_ =>
{
if (IsLoaded)
PollImmediately();
});
}
private GetRoomRequest pollReq;
protected override Task Poll()
{
if (!api.IsLoggedIn)
return base.Poll();
if (selectedRoom.Value?.RoomID.Value == null)
return base.Poll();
var tcs = new TaskCompletionSource<bool>();
pollReq?.Cancel();
pollReq = new GetRoomRequest(selectedRoom.Value.RoomID.Value.Value);
pollReq.Success += result =>
{
RoomReceived?.Invoke(result);
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
api.Queue(pollReq);
return tcs.Task;
}
}
private class ListingPollingComponent : PollingComponent
{
public Action<List<Room>> RoomsReceived;
[Resolved]
private IAPIProvider api { get; set; }
[Resolved]
private Bindable<FilterCriteria> currentFilter { get; set; }
[BackgroundDependencyLoader]
private void load()
{
currentFilter.BindValueChanged(_ =>
{
if (IsLoaded)
PollImmediately();
});
}
private GetRoomsRequest pollReq;
protected override Task Poll()
{
if (!api.IsLoggedIn)
return base.Poll();
var tcs = new TaskCompletionSource<bool>();
pollReq?.Cancel();
pollReq = new GetRoomsRequest(currentFilter.Value.PrimaryFilter);
pollReq.Success += result =>
{
RoomsReceived?.Invoke(result);
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
api.Queue(pollReq);
return tcs.Task;
}
}
} }
} }

View File

@ -9,7 +9,7 @@ using osu.Framework.Bindables;
namespace osu.Game.Users namespace osu.Game.Users
{ {
public class User public class User : IEquatable<User>
{ {
[JsonProperty(@"id")] [JsonProperty(@"id")]
public long Id = 1; public long Id = 1;
@ -244,5 +244,13 @@ namespace osu.Game.Users
[Description("Touch Screen")] [Description("Touch Screen")]
Touch, Touch,
} }
public bool Equals(User other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Id == other.Id;
}
} }
} }

View File

@ -23,7 +23,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" /> <PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" />
<PackageReference Include="ppy.osu.Framework" Version="2020.225.0" /> <PackageReference Include="ppy.osu.Framework" Version="2020.228.0" />
<PackageReference Include="Sentry" Version="2.0.3" /> <PackageReference Include="Sentry" Version="2.0.3" />
<PackageReference Include="SharpCompress" Version="0.24.0" /> <PackageReference Include="SharpCompress" Version="0.24.0" />
<PackageReference Include="NUnit" Version="3.12.0" /> <PackageReference Include="NUnit" Version="3.12.0" />

View File

@ -71,7 +71,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup Label="Package References"> <ItemGroup Label="Package References">
<PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" /> <PackageReference Include="ppy.osu.Game.Resources" Version="2020.221.0" />
<PackageReference Include="ppy.osu.Framework.iOS" Version="2020.225.0" /> <PackageReference Include="ppy.osu.Framework.iOS" Version="2020.228.0" />
</ItemGroup> </ItemGroup>
<!-- Xamarin.iOS does not automatically handle transitive dependencies from NuGet packages. --> <!-- Xamarin.iOS does not automatically handle transitive dependencies from NuGet packages. -->
<ItemGroup Label="Transitive Dependencies"> <ItemGroup Label="Transitive Dependencies">
@ -79,7 +79,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ppy.osu.Framework" Version="2020.225.0" /> <PackageReference Include="ppy.osu.Framework" Version="2020.228.0" />
<PackageReference Include="SharpCompress" Version="0.24.0" /> <PackageReference Include="SharpCompress" Version="0.24.0" />
<PackageReference Include="NUnit" Version="3.12.0" /> <PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="SharpRaven" Version="2.4.0" /> <PackageReference Include="SharpRaven" Version="2.4.0" />