Skip to content

Commit

Permalink
Update package and fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Sep 11, 2020
1 parent 2f8769a commit e1c1833
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
Expand Down
3 changes: 1 addition & 2 deletions osu.Game.Rulesets.Karaoke/UI/PlayerSettings/PitchSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ namespace osu.Game.Rulesets.Karaoke.UI.PlayerSettings
{
public class PitchSettings : PlayerSettingsGroup
{
protected override string Title => "Pitch";

private readonly ClickablePlayerSliderBar pitchSliderBar;
private readonly ClickablePlayerSliderBar vocalPitchSliderBar;
private readonly ClickablePlayerSliderBar saitenPitchSliderBar;

public PitchSettings()
: base("Pitch")
{
Children = new Drawable[]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ namespace osu.Game.Rulesets.Karaoke.UI.PlayerSettings
{
public class PlaybackSettings : PlayerSettingsGroup, IKeyBindingHandler<KaraokeAction>
{
protected override string Title => "Playback";

private readonly ClickablePlayerSliderBar playBackSliderBar;

public PlaybackSettings()
: base("Playback")
{
Children = new Drawable[]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ namespace osu.Game.Rulesets.Karaoke.UI.PlayerSettings
{
public class PracticeSettings : PlayerSettingsGroup, IKeyBindingHandler<KaraokeAction>
{
protected override string Title => "Practice";

private readonly PlayerSliderBar<double> preemptTimeSliderBar;
private readonly LyricPreview lyricPreview;

public PracticeSettings(IBeatmap beatmap)
: base("Practice")
{
var lyrics = beatmap.HitObjects.OfType<LyricLine>().ToList();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ namespace osu.Game.Rulesets.Karaoke.UI.PlayerSettings
{
public class RubyRomajiSettings : PlayerSettingsGroup
{
protected override string Title => "Ruby/Romaji";

private readonly PlayerCheckbox displayRubyCheckBox;
private readonly PlayerCheckbox displayRomajiCheckBox;

public RubyRomajiSettings()
: base("Ruby/Romaji")
{
Children = new Drawable[]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ namespace osu.Game.Rulesets.Karaoke.UI.PlayerSettings
{
public class TranslateSettings : PlayerSettingsGroup
{
protected override string Title => "Translate";

private readonly PlayerCheckbox translateCheckBox;
private readonly OsuSpriteText translateText;
private readonly OsuDropdown<string> translateDropDown;

public TranslateSettings(PropertyDictionary dictionary)
: base("Translate")
{
Children = new Drawable[]
{
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 @@ -13,7 +13,7 @@
<PackageReference Include="ILRepack.MSBuild.Task" Version="2.0.13" />
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="osu.Framework.Microphone" Version="1.0.10" />
<PackageReference Include="ppy.osu.Game" Version="2020.903.0" />
<PackageReference Include="ppy.osu.Game" Version="2020.910.0" />
<PackageReference Include="LyricMaker" Version="1.1.1" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
<PackageReference Include="osu.KaraokeFramework" Version="1.2.1" />
Expand Down

0 comments on commit e1c1833

Please sign in to comment.