Skip to content

Commit

Permalink
Difficulty factor added + Length bonus rework
Browse files Browse the repository at this point in the history
  • Loading branch information
kongehund authored and TheDark98 committed Jan 14, 2025
1 parent 3f0005a commit f6a22c6
Show file tree
Hide file tree
Showing 105 changed files with 497 additions and 3,429 deletions.
2 changes: 1 addition & 1 deletion osu.Android.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Framework.Android" Version="2024.1224.0" />
<PackageReference Include="ppy.osu.Framework.Android" Version="2024.1206.0" />
</ItemGroup>
<PropertyGroup>
<!-- Fody does not handle Android build well, and warns when unchanged.
Expand Down
1 change: 1 addition & 0 deletions osu.Desktop/OsuGameDesktop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ public override void SetHost(GameHost host)
if (iconStream != null)
host.Window.SetIconFromStream(iconStream);

host.Window.CursorState |= CursorState.Hidden;
host.Window.Title = Name;
}

Expand Down
15 changes: 0 additions & 15 deletions osu.Game.Rulesets.Catch.Tests.iOS/AppDelegate.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Catch.Tests.iOS
{
public static class Program
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
15 changes: 0 additions & 15 deletions osu.Game.Rulesets.Mania.Tests.iOS/AppDelegate.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Mania.Tests.iOS
{
public static class Program
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
2 changes: 0 additions & 2 deletions osu.Game.Rulesets.Mania.Tests/ManiaBeatmapConversionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ public class ManiaBeatmapConversionTest : BeatmapConversionTest<ManiaConvertMapp

[TestCase("basic")]
[TestCase("zero-length-slider")]
[TestCase("mania-specific-spinner")]
[TestCase("20544")]
[TestCase("100374")]
[TestCase("1450162")]
[TestCase("4869637")]
public void Test(string name) => base.Test(name);

protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
Expand Down

This file was deleted.

Loading

0 comments on commit f6a22c6

Please sign in to comment.