Skip to content

Commit

Permalink
fix 1.27.0 (#129)
Browse files Browse the repository at this point in the history
* fix 1.27.0

* bump ver and copyright
  • Loading branch information
Goobwabber authored Jan 11, 2023
1 parent be6722a commit 3c80cc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public abstract class NoteCountProcessor
protected List<NoteData> GetNoteData(IReadonlyBeatmapData data)
{
return data
.GetBeatmapDataItems<NoteData>()
.GetBeatmapDataItems<NoteData>(0)
.Where(noteData => noteData.gameplayType != NoteData.GameplayType.Bomb && !ShouldIgnoreNote(noteData))
.ToList();
}
Expand Down
6 changes: 3 additions & 3 deletions Counters+/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Counters+")]
[assembly: AssemblyCopyright("Copyright © Caeden117 2018-2022")]
[assembly: AssemblyCopyright("Copyright © Caeden117 2018-2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: InternalsVisibleTo(IPA.Config.Stores.GeneratedStore.AssemblyVisibilityTarget)]
Expand All @@ -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.1")]
[assembly: AssemblyFileVersion("2.3.1")]
[assembly: AssemblyVersion("2.3.2")]
[assembly: AssemblyFileVersion("2.3.2")]
4 changes: 2 additions & 2 deletions Counters+/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"id": "Counters+",
"name": "Counters+",
"author": "Caeden117",
"version": "2.3.1",
"version": "2.3.2",
"description": "A suite of enhancements for Beat Saber's UI.",
"icon": "CountersPlus.UI.Images.Logo.png",
"gameVersion": "1.23.0",
"gameVersion": "1.27.0",
"dependsOn": {
"BSIPA": "^4.2.1",
"BeatSaberMarkupLanguage": "^1.6.0",
Expand Down

1 comment on commit 3c80cc5

@lillebart
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we make this release 2.3.2?
The addon is missing from Modassistant and just needs to be released, the fix is here.

Please sign in to comment.