Skip to content

Commit

Permalink
bump osu version
Browse files Browse the repository at this point in the history
  • Loading branch information
Flutterish committed May 4, 2024
1 parent e7eb1b8 commit 569d637
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Hitokori/Objects/Drawables/Trails/CircularConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected override void render () {
arc.InnerRadius = TrailRadius * 2 / radius;
arc.Size = new Vector2( radius * 2 );

arc.FillTo( ( progress.B - progress.A ) / Math.PI / 2 * angle );
arc.ProgressTo( ( progress.B - progress.A ) / Math.PI / 2 * angle );

arc.Rotation = ( ( Around - From ).AngleFromXAxis() + ( angle >= 0 ? progress.A : progress.B ) * angle ).ToDegreesF() - 90;
}
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/UI/ColorPickerControl.HuePicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private class HueNotch : CircularProgress {

protected override void LoadComplete () {
IsContinuous.BindValueChanged( v => {
this.FillTo( fill / 360, 100, Easing.Out );
this.ProgressTo( fill / 360, 100, Easing.Out );
this.ResizeTo( outerRadius, 100, Easing.Out );
this.TransformTo( nameof( InnerRadius ), 1 - (innerRadius / outerRadius), 100, Easing.Out );
}, true );
Expand Down
4 changes: 2 additions & 2 deletions Hitokori/osu.Game.Rulesets.Hitokori.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2023.1114.1" />
<PackageReference Include="ppy.osu.Game" Version="2024.412.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/VisualTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace osu.Game.Rulesets.Hitokori.Tests {
public static class VisualTestRunner {
[STAThread]
public static int Main ( string[] args ) {
using ( DesktopGameHost host = Host.GetSuitableDesktopHost( @"osu", new() { BindIPC = true } ) ) {
using ( DesktopGameHost host = Host.GetSuitableDesktopHost( @"osu" ) ) {
host.Run( new OsuTestBrowser() );
return 0;
}
Expand Down
6 changes: 3 additions & 3 deletions Tests/osu.Game.Rulesets.Hitokori.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23531-01" />
<PackageReference Include="NUnit" Version="4.0.0-beta.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0-release-24177-07" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
</ItemGroup>
Expand All @@ -20,7 +20,7 @@
</ItemGroup>
<PropertyGroup Label="Project">
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>osu.Game.Rulesets.Hitokori.Tests</RootNamespace>
</PropertyGroup>
</Project>

0 comments on commit 569d637

Please sign in to comment.