mirror of
https://github.com/ppy/osu
synced 2024-12-26 00:32:52 +00:00
Merge branch 'master' into fix-ubo-not-bound
This commit is contained in:
commit
d31b37e87e
@ -126,6 +126,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
Id = 13926,
|
||||
TournamentId = 35,
|
||||
ImageLowRes = "https://assets.ppy.sh/tournament-banners/official/owc2022/profile/winner_US.jpg",
|
||||
Image = "https://assets.ppy.sh/tournament-banners/official/owc2022/profile/winner_US@2x.jpg",
|
||||
},
|
||||
Badges = new[]
|
||||
{
|
||||
|
@ -332,13 +332,6 @@ namespace osu.Game.Tournament
|
||||
|
||||
private void saveChanges()
|
||||
{
|
||||
foreach (var r in ladder.Rounds)
|
||||
r.Matches = ladder.Matches.Where(p => p.Round.Value == r).Select(p => p.ID).ToList();
|
||||
|
||||
ladder.Progressions = ladder.Matches.Where(p => p.Progression.Value != null).Select(p => new TournamentProgression(p.ID, p.Progression.Value.ID)).Concat(
|
||||
ladder.Matches.Where(p => p.LosersProgression.Value != null).Select(p => new TournamentProgression(p.ID, p.LosersProgression.Value.ID, true)))
|
||||
.ToList();
|
||||
|
||||
// Serialise before opening stream for writing, so if there's a failure it will leave the file in the previous state.
|
||||
string serialisedLadder = GetSerialisedLadder();
|
||||
|
||||
@ -349,6 +342,13 @@ namespace osu.Game.Tournament
|
||||
|
||||
public string GetSerialisedLadder()
|
||||
{
|
||||
foreach (var r in ladder.Rounds)
|
||||
r.Matches = ladder.Matches.Where(p => p.Round.Value == r).Select(p => p.ID).ToList();
|
||||
|
||||
ladder.Progressions = ladder.Matches.Where(p => p.Progression.Value != null).Select(p => new TournamentProgression(p.ID, p.Progression.Value.ID)).Concat(
|
||||
ladder.Matches.Where(p => p.LosersProgression.Value != null).Select(p => new TournamentProgression(p.ID, p.LosersProgression.Value.ID, true)))
|
||||
.ToList();
|
||||
|
||||
return JsonConvert.SerializeObject(ladder,
|
||||
new JsonSerializerSettings
|
||||
{
|
||||
|
@ -257,6 +257,7 @@ namespace osu.Game.Screens.Select
|
||||
public FilterControlTextBox()
|
||||
{
|
||||
Height += filter_text_size;
|
||||
TextContainer.Height *= (Height - filter_text_size) / Height;
|
||||
TextContainer.Margin = new MarginPadding { Bottom = filter_text_size };
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// 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 System.IO;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace osu.Game.Users
|
||||
@ -17,7 +16,7 @@ namespace osu.Game.Users
|
||||
[JsonProperty("image")]
|
||||
public string ImageLowRes = null!;
|
||||
|
||||
// TODO: remove when api returns @2x image link: https://github.com/ppy/osu-web/issues/9816
|
||||
public string Image => $@"{Path.ChangeExtension(ImageLowRes, null)}@2x{Path.GetExtension(ImageLowRes)}";
|
||||
[JsonProperty("image@2x")]
|
||||
public string Image = null!;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user