Skip to content

Commit

Permalink
Merge pull request #78 from lichie567/develop
Browse files Browse the repository at this point in the history
revert throwaway values again
  • Loading branch information
lichie567 authored Aug 1, 2024
2 parents ce41701 + df5fb84 commit 2e49ee0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 22 deletions.
8 changes: 0 additions & 8 deletions LMeter/ACT/DataStructures/Combatant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,4 @@ public static Combatant GetTestData()
MaxHit = "Full Thrust-42069"
};
}

// These have to be here because newtonsoft and overlayplugin suck
#pragma warning disable 0169
[JsonProperty("ENCDPS")]
private readonly string? _encdps;
[JsonProperty("ENCHPS")]
private readonly string? _enchps;
#pragma warning restore 0169
}
8 changes: 0 additions & 8 deletions LMeter/ACT/DataStructures/Encounter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,4 @@ public static Encounter GetTestData()
HealingTotal = new LazyFloat(healing)
};
}

// These have to be here because newtonsoft and overlayplugin suck
#pragma warning disable 0169
[JsonProperty("ENCDPS")]
private readonly string? _encdps;
[JsonProperty("ENCHPS")]
private readonly string? _enchps;
#pragma warning restore 0169
}
6 changes: 3 additions & 3 deletions LMeter/LMeter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<!-- Assembly Configuration -->
<PropertyGroup>
<AssemblyName>LMeter</AssemblyName>
<AssemblyVersion>0.4.1.0</AssemblyVersion>
<FileVersion>0.4.1.0</FileVersion>
<InformationalVersion>0.4.1.0</InformationalVersion>
<AssemblyVersion>0.4.1.1</AssemblyVersion>
<FileVersion>0.4.1.1</FileVersion>
<InformationalVersion>0.4.1.1</InformationalVersion>
</PropertyGroup>

<!-- Build Configuration -->
Expand Down
2 changes: 1 addition & 1 deletion LMeter/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Plugin : IDalamudPlugin
{
public const string ConfigFileName = "LMeter.json";

public static string Version { get; private set; } = "0.4.1.0";
public static string Version { get; private set; } = "0.4.1.1";
public static string ConfigFileDir { get; private set; } = "";
public static string ConfigFilePath { get; private set; } = "";
public static string AssemblyFileDir { get; private set; } = "";
Expand Down
3 changes: 3 additions & 0 deletions LMeter/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 0.4.1.1
- Fix bug with [dps] tag not working for some users

# Version 0.4.1.0
- Add support for FFLogs DPS calculations
- Five new TextTags added: RDPS, ADPS, NDPS, CDPS, RAWDPS
Expand Down
4 changes: 2 additions & 2 deletions 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("0.4.1.0")]
[assembly: AssemblyFileVersion("0.4.1.0")]
[assembly: AssemblyVersion("0.4.1.1")]
[assembly: AssemblyFileVersion("0.4.1.1")]

0 comments on commit 2e49ee0

Please sign in to comment.