Skip to content

Commit 0eb4f83

Browse files
authored
Merge pull request #2321 from andy840119/upgrade-package-to-latest
Upgrade package to latest
2 parents 13ff713 + a877858 commit 0eb4f83

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

osu.Game.Rulesets.Karaoke.Tests/Beatmaps/Formats/KaraokeLegacyBeatmapDecoderTest.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ public void TestDecodeBeatmapLyric()
3737

3838
var working = new TestWorkingBeatmap(decoder.Decode(stream));
3939

40-
Assert.AreEqual(1, working.BeatmapInfo.BeatmapVersion);
41-
Assert.AreEqual(1, working.Beatmap.BeatmapInfo.BeatmapVersion);
42-
Assert.AreEqual(1, working.GetPlayableBeatmap(new KaraokeRuleset().RulesetInfo, Array.Empty<Mod>()).BeatmapInfo.BeatmapVersion);
40+
Assert.AreEqual(1, working.Beatmap.BeatmapVersion);
41+
Assert.AreEqual(1, working.GetPlayableBeatmap(new KaraokeRuleset().RulesetInfo, Array.Empty<Mod>()).BeatmapVersion);
4342

4443
// Test lyric part decode result
4544
var lyrics = working.Beatmap.HitObjects.OfType<Lyric>();

osu.Game.Rulesets.Karaoke/Overlays/Changelog/ChangeLogMarkdownContainer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ private void addPullRequestInfo(ChangelogPullRequestInfo pullRequestInfo)
103103
})
104104
{
105105
Scale = textScale,
106-
Anchor = Anchor.BottomLeft,
107106
});
108107
}
109108
}

osu.Game.Rulesets.Karaoke/Overlays/Changelog/Sidebar/ChangelogSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ private void load(OverlayColourProvider overlayColours, Bindable<APIChangelogBui
9090
HoverColour = isCurrent ? Color4.White : overlayColours.Light1;
9191

9292
// update font.
93-
text.OfType<SpriteText>().ForEach(f =>
93+
text.Children.OfType<SpriteText>().ForEach(f =>
9494
{
9595
f.Font = OsuFont.GetFont(size: font_size, weight: isCurrent ? FontWeight.SemiBold : FontWeight.Medium);
9696
});

osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>
20-
<PackageReference Include="ppy.osu.Game" Version="2025.227.0" />
20+
<PackageReference Include="ppy.osu.Game" Version="2025.424.0" />
2121
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00016" />
2222
<PackageReference Include="Lucene.Net.Analysis.Kuromoji" Version="4.8.0-beta00016" />
23-
<PackageReference Include="SixLabors.Fonts" Version="2.1.2" />
23+
<PackageReference Include="SixLabors.Fonts" Version="2.1.3" />
2424
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.5" />
2525
<!--install because it might cause "Could not load file or assembly" error, might be removed eventually-->
2626
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />

0 commit comments

Comments
 (0)