Skip to content

Commit

Permalink
Merge pull request #2235 from andy840119/update-lazer-again
Browse files Browse the repository at this point in the history
Upgrade the lazer version and fix the breaking change.
  • Loading branch information
andy840119 authored May 22, 2024
2 parents 57a3db4 + 388f8c1 commit a3b0621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Copyright (c) andy840119 <[email protected]>. Licensed under the GPL Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Numerics;
using System;
using osu.Framework.Graphics;
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Overlays.Settings;

namespace osu.Game.Rulesets.Karaoke.Graphics.UserInterfaceV2;

public partial class LabelledRealTimeSliderBar<TNumber> : LabelledSliderBar<TNumber>
where TNumber : struct, INumber<TNumber>, IMinMaxValue<TNumber>
where TNumber : struct, IEquatable<TNumber>, IComparable<TNumber>, IConvertible
{
protected override SettingsSlider<TNumber> CreateComponent()
=> base.CreateComponent().With(x => x.TransferValueOnCommit = false);
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ppy.osu.Game" Version="2024.517.0" />
<PackageReference Include="ppy.osu.Game" Version="2024.521.2" />
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00016" />
<PackageReference Include="Lucene.Net.Analysis.Kuromoji" Version="4.8.0-beta00016" />
<PackageReference Include="SixLabors.Fonts" Version="2.0.3" />
Expand Down

0 comments on commit a3b0621

Please sign in to comment.