Skip to content

Commit

Permalink
Update for 1.40.0
Browse files Browse the repository at this point in the history
NuggoDEV committed Jan 3, 2025
1 parent 71c3c20 commit 49cf7df
Showing 4 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Counters+/Counters/CutCounter.cs
Original file line number Diff line number Diff line change
@@ -84,21 +84,21 @@ private void ScoreController_scoringForNoteFinishedEvent(ScoringElement scoringE
cutCountForHand[1]++;
cutCountForHand[2]++;
break;
case NoteData.ScoringType.SliderHead when Settings.IncludeArcs:
case NoteData.ScoringType.ArcHead when Settings.IncludeArcs:
totalScoresForHand[0] += beforeCut;
totalScoresForHand[2] += cutDistance;

cutCountForHand[0]++;
cutCountForHand[2]++;
break;
case NoteData.ScoringType.SliderTail when Settings.IncludeArcs:
case NoteData.ScoringType.ArcTail when Settings.IncludeArcs:
totalScoresForHand[1] += afterCut;
totalScoresForHand[2] += cutDistance;

cutCountForHand[1]++;
cutCountForHand[2]++;
break;
case NoteData.ScoringType.BurstSliderHead when Settings.IncludeChains:
case NoteData.ScoringType.ChainHead when Settings.IncludeChains:
totalScoresForHand[0] += beforeCut;
totalScoresForHand[2] += cutDistance;

4 changes: 2 additions & 2 deletions Counters+/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.10")]
[assembly: AssemblyFileVersion("2.3.10")]
[assembly: AssemblyVersion("2.3.11")]
[assembly: AssemblyFileVersion("2.3.11")]
Original file line number Diff line number Diff line change
@@ -56,6 +56,9 @@ protected override void DidActivate(bool firstActivation, bool addedToHierarchy,
ProvideInitialViewControllers(mainScreenNavigation, credits, null, settingsSelection);

RefreshAllMockCounters();

// temp fix for menu env showing in settings
GameObject.Find("RootContainer/Wrapper/MenuEnvironmentManager/DefaultMenuEnvironment").SetActive(false);
}

public void DoSceneTransition(Action callback = null)
8 changes: 4 additions & 4 deletions Counters+/manifest.json
Original file line number Diff line number Diff line change
@@ -3,14 +3,14 @@
"id": "Counters+",
"name": "Counters+",
"author": "Caeden117",
"version": "2.3.10",
"version": "2.3.11",
"description": "A suite of enhancements for Beat Saber's UI.",
"icon": "CountersPlus.UI.Images.Logo.png",
"gameVersion": "1.37.5",
"gameVersion": "1.40.0",
"dependsOn": {
"BSIPA": "^4.3.5",
"BeatSaberMarkupLanguage": "^1.12.1",
"SiraUtil": "^3.1.12"
"BeatSaberMarkupLanguage": "^1.12.5",
"SiraUtil": "^3.1.14"
},
"features": {
"IPA.DefineFeature": {

0 comments on commit 49cf7df

Please sign in to comment.