Skip to content

Commit

Permalink
Merge pull request #266 from andy840119/update-package
Browse files Browse the repository at this point in the history
Update nuget package.
  • Loading branch information
andy840119 authored Nov 28, 2020
2 parents 3b2e3b5 + 2e517a2 commit a886219
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public TestResultsContainer(IScreen screen)
private class TestResultsScreen : ResultsScreen
{
public TestResultsScreen(ScoreInfo score)
: base(score)
: base(score, true)
{
}

Expand Down
8 changes: 4 additions & 4 deletions osu.Game.Rulesets.Karaoke/Objects/Drawables/DrawableLyric.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ private void load()
TranslateTextBindable.BindValueChanged(text => { translateText.Text = text.NewValue ?? ""; });
}

protected override void OnApply(HitObject hitObject)
protected override void OnApply()
{
base.OnApply(hitObject);
base.OnApply();

TextBindable.BindTo(HitObject.TextBindable);
TimeTagsBindable.BindTo(HitObject.TimeTagsBindable);
Expand All @@ -93,9 +93,9 @@ protected override void OnApply(HitObject hitObject)
TranslateTextBindable.BindTo(HitObject.TranslateTextBindable);
}

protected override void OnFree(HitObject hitObject)
protected override void OnFree()
{
base.OnFree(hitObject);
base.OnFree();

TextBindable.UnbindFrom(HitObject.TextBindable);
TimeTagsBindable.UnbindFrom(HitObject.TimeTagsBindable);
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 @@ -15,7 +15,7 @@
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="osu.Framework.KaraokeFont" Version="1.2.0" />
<PackageReference Include="osu.Framework.Microphone" Version="1.0.10" />
<PackageReference Include="ppy.osu.Game" Version="2020.1121.0" />
<PackageReference Include="ppy.osu.Game" Version="2020.1128.0" />
<PackageReference Include="LyricMaker" Version="1.1.1" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
<PackageReference Include="Zipangu" Version="1.1.8" />
Expand Down

0 comments on commit a886219

Please sign in to comment.