From d0f82841d644ba843902b35edddf3917acfef209 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 5 Feb 2022 09:01:49 +0000 Subject: [PATCH 1/3] Bump ppy.osu.Game from 2022.127.0 to 2022.205.0 Bumps [ppy.osu.Game](https://github.com/ppy/osu) from 2022.127.0 to 2022.205.0. - [Release notes](https://github.com/ppy/osu/releases) - [Commits](https://github.com/ppy/osu/compare/2022.127.0...2022.205.0) --- updated-dependencies: - dependency-name: ppy.osu.Game dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- osu.Game.Rulesets.Sentakki/osu.Game.Rulesets.Sentakki.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Rulesets.Sentakki/osu.Game.Rulesets.Sentakki.csproj b/osu.Game.Rulesets.Sentakki/osu.Game.Rulesets.Sentakki.csproj index 4d32b956f..ebe0ae884 100644 --- a/osu.Game.Rulesets.Sentakki/osu.Game.Rulesets.Sentakki.csproj +++ b/osu.Game.Rulesets.Sentakki/osu.Game.Rulesets.Sentakki.csproj @@ -9,7 +9,7 @@ osu.Game.Rulesets.Sentakki - + From 4f0c23b8519b9b0d68504d0eff47437fadca4f04 Mon Sep 17 00:00:00 2001 From: Derrick Timmermans Date: Sat, 5 Feb 2022 10:07:35 +0100 Subject: [PATCH 2/3] Fix replay breaking change --- .../Replays/SentakkiFramedReplayInputHandler.cs | 2 +- osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/osu.Game.Rulesets.Sentakki/Replays/SentakkiFramedReplayInputHandler.cs b/osu.Game.Rulesets.Sentakki/Replays/SentakkiFramedReplayInputHandler.cs index 2b72336e2..3efa732d2 100644 --- a/osu.Game.Rulesets.Sentakki/Replays/SentakkiFramedReplayInputHandler.cs +++ b/osu.Game.Rulesets.Sentakki/Replays/SentakkiFramedReplayInputHandler.cs @@ -30,7 +30,7 @@ protected Vector2 Position } } - public override void CollectPendingInputs(List inputs) + protected override void CollectReplayInputs(List inputs) { inputs.Add(new MousePositionAbsoluteInput { diff --git a/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs b/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs index a406b938c..102b9d69c 100644 --- a/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs +++ b/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs @@ -134,32 +134,32 @@ public override StatisticRow[] CreateStatisticsForScore(ScoreInfo score, IBeatma { Columns = new[] { - new StatisticItem("Timing Distribution", new HitEventTimingDistributionGraph(score.HitEvents) + new StatisticItem("Timing Distribution", () => new HitEventTimingDistributionGraph(score.HitEvents) { RelativeSizeAxes = Axes.X, Height = 250 - }) + }, true) } }, new StatisticRow { Columns = new[] { - new StatisticItem("Judgement Distribution", new JudgementChart(score.HitEvents.Where(e=>e.HitObject is SentakkiHitObject).ToList()) + new StatisticItem("Judgement Distribution", ()=>new JudgementChart(score.HitEvents.Where(e=>e.HitObject is SentakkiHitObject).ToList()) { RelativeSizeAxes = Axes.X, Size = new Vector2(1, 250) - }), + },false), } }, new StatisticRow { Columns = new[] { - new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[] + new StatisticItem(string.Empty, ()=>new SimpleStatisticTable(3, new SimpleStatisticItem[] { new UnstableRate(score.HitEvents) - })) + }), true) } } }; From d3b0f6d2691f55c319c8f420b1e0b513a8725351 Mon Sep 17 00:00:00 2001 From: Derrick Timmermans Date: Sat, 5 Feb 2022 10:11:17 +0100 Subject: [PATCH 3/3] Judgement distributions does need hit events --- osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs b/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs index 102b9d69c..b47843c0b 100644 --- a/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs +++ b/osu.Game.Rulesets.Sentakki/SentakkiRuleset.cs @@ -149,7 +149,7 @@ public override StatisticRow[] CreateStatisticsForScore(ScoreInfo score, IBeatma { RelativeSizeAxes = Axes.X, Size = new Vector2(1, 250) - },false), + },true), } }, new StatisticRow