Skip to content

Commit

Permalink
Merge pull request #281 from karaoke-dev/dependabot/nuget/ppy.osu.Fra…
Browse files Browse the repository at this point in the history
…mework-2022.1204.0

Bump ppy.osu.Framework from 2022.1101.0 to 2022.1204.0
  • Loading branch information
andy840119 authored Dec 5, 2022
2 parents cf02486 + 166402b commit 7436b49
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Make everything partial
35abcde7a4eeb823067b9cd0ef4b84c81e4e35cd
2 changes: 1 addition & 1 deletion osu.Framework.Microphone.Tests/AutomatedVisualTestGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace osu.Framework.Tests
{
internal class AutomatedVisualTestGame : TestGame
internal partial class AutomatedVisualTestGame : TestGame
{
public AutomatedVisualTestGame()
{
Expand Down
2 changes: 1 addition & 1 deletion osu.Framework.Microphone.Tests/TestGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace osu.Framework.Tests
{
internal class TestGame : Game
internal partial class TestGame : Game
{
[BackgroundDependencyLoader]
private void load()
Expand Down
4 changes: 2 additions & 2 deletions osu.Framework.Microphone.Tests/Visual/FrameworkTestScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

namespace osu.Framework.Tests.Visual
{
public abstract class FrameworkTestScene : TestScene
public abstract partial class FrameworkTestScene : TestScene
{
protected override ITestSceneTestRunner CreateRunner() => new FrameworkTestSceneTestRunner();

private class FrameworkTestSceneTestRunner : TestSceneTestRunner
private partial class FrameworkTestSceneTestRunner : TestSceneTestRunner
{
[BackgroundDependencyLoader]
private void load()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace osu.Framework.Tests.Visual.Input
{
[TestFixture]
public class TestSceneGetMicrophoneList : FrameworkTestScene
public partial class TestSceneGetMicrophoneList : FrameworkTestScene
{
public TestSceneGetMicrophoneList()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
namespace osu.Framework.Tests.Visual.Input
{
[TestFixture]
public class TestSceneMicrophone : FrameworkTestScene
public partial class TestSceneMicrophone : FrameworkTestScene
{
public TestSceneMicrophone()
{
Expand Down Expand Up @@ -43,12 +43,12 @@ public TestSceneMicrophone()
Child = manager;
}

private class TestMicrophoneInputManager : MicrophoneInputManager
private partial class TestMicrophoneInputManager : MicrophoneInputManager
{
public MicrophoneHandler MicrophoneHandler => InputHandlers.OfType<MicrophoneHandler>().First();
}

private class MicrophonePitchVisualization : MicrophoneVisualization
private partial class MicrophonePitchVisualization : MicrophoneVisualization
{
protected override bool OnMicrophoneStartSinging(MicrophoneStartPitchingEvent e)
{
Expand All @@ -73,7 +73,7 @@ protected override bool OnMicrophoneSinging(MicrophonePitchingEvent e)
}
}

private class MicrophoneDecibelVisualization : MicrophoneVisualization
private partial class MicrophoneDecibelVisualization : MicrophoneVisualization
{
protected override bool OnMicrophoneStartSinging(MicrophoneStartPitchingEvent e)
{
Expand All @@ -98,7 +98,7 @@ protected override bool OnMicrophoneSinging(MicrophonePitchingEvent e)
}
}

private class MicrophoneVisualization : CompositeDrawable
private partial class MicrophoneVisualization : CompositeDrawable
{
private readonly Box background;

Expand Down
2 changes: 1 addition & 1 deletion osu.Framework.Microphone.Tests/VisualTestGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace osu.Framework.Tests
{
internal class VisualTestGame : TestGame
internal partial class VisualTestGame : TestGame
{
[BackgroundDependencyLoader]
private void load()
Expand Down
2 changes: 1 addition & 1 deletion osu.Framework.Microphone.iOS.props
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
</ItemGroup>
<ItemGroup Label="Package References">
<PackageReference Include="NWaves" Version="0.9.6" />
<PackageReference Include="ppy.osu.Framework" Version="2022.1101.0" />
<PackageReference Include="ppy.osu.Framework" Version="2022.1204.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion osu.Framework.Microphone/Input/MicrophoneInputManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace osu.Framework.Input
{
public class MicrophoneInputManager : CustomInputManager
public partial class MicrophoneInputManager : CustomInputManager
{
protected override InputState CreateInitialState() => new MicrophoneInputState(new MicrophoneState());

Expand Down
2 changes: 1 addition & 1 deletion osu.Framework.Microphone/osu.Framework.Microphone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="NWaves" Version="0.9.6" />
<PackageReference Include="ppy.osu.Framework" Version="2022.1101.0" />
<PackageReference Include="ppy.osu.Framework" Version="2022.1204.0" />
<PackageReference Update="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3" />
</ItemGroup>

Expand Down

0 comments on commit 7436b49

Please sign in to comment.