Skip to content

Commit

Permalink
Update for 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PulseLane committed Nov 15, 2020
1 parent 92a01be commit f861ec0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions TimeDependenceCounter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyVersion("1.0.2")]
[assembly: AssemblyFileVersion("1.0.2")]
2 changes: 1 addition & 1 deletion TimeDependenceCounter/TimeDependenceCounter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void OnNoteMiss(NoteData data) { }

public void OnNoteCut(NoteData data, NoteCutInfo info)
{
if (data.noteType == NoteType.Bomb || !info.allIsOK) return;
if (data.colorType == ColorType.None || !info.allIsOK) return;
UpdateText(Math.Abs(info.cutNormal.z), info.saberType);
}

Expand Down
6 changes: 6 additions & 0 deletions TimeDependenceCounter/TimeDependenceCounter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,19 @@
<Reference Include="0Harmony">
<HintPath>F:\Steam\steamapps\common\Beat Saber\Libs\0Harmony.dll</HintPath>
</Reference>
<Reference Include="BeatmapCore">
<HintPath>F:\Steam\steamapps\common\Beat Saber\Beat Saber_Data\Managed\BeatmapCore.dll</HintPath>
</Reference>
<Reference Include="BSML, Version=1.3.4.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>F:\Steam\steamapps\common\Beat Saber\Plugins\BSML.dll</HintPath>
</Reference>
<Reference Include="Counters+">
<HintPath>F:\Steam\steamapps\common\Beat Saber\Plugins\Counters+.dll</HintPath>
</Reference>
<Reference Include="GameplayCore">
<HintPath>F:\Steam\steamapps\common\Beat Saber\Beat Saber_Data\Managed\GameplayCore.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
Expand Down
6 changes: 3 additions & 3 deletions TimeDependenceCounter/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"id": "TimeDependenceCounter",
"name": "TimeDependenceCounter",
"author": "PulseLane",
"version": "1.0.0",
"version": "1.0.2",
"description": "Adds a counter showing the average of how time-dependent the cuts are",
"gameVersion": "1.11.1",
"gameVersion": "1.13.0",
"dependsOn": {
"Counters+": "^2.0.0",
"Counters+": "^2.1.0",
"BeatSaberMarkupLanguage": "^1.3.2",
"BSIPA": "^4.1.0"
},
Expand Down

0 comments on commit f861ec0

Please sign in to comment.