Skip to content

Commit

Permalink
Updated method of storing plugin id
Browse files Browse the repository at this point in the history
Removed configuration file name
  • Loading branch information
John H. Freeman committed Sep 21, 2023
1 parent b1be21f commit 97fe0a9
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 27 deletions.
2 changes: 1 addition & 1 deletion EverQuestDPSPlugin/EverQuestDPSPluginPartial1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public void DeInitPlugin()

void UpdateCheckClicked()
{
int.TryParse(EverQuestDPSPluginResource.pluginId, out int pluginId);
int pluginId = 92;
try
{
String regexMatchString = @"Version=(?<AssemblyVersion>\S+)";
Expand Down
1 change: 0 additions & 1 deletion EverQuestDPSPlugin/EverQuestDPSPluginPartial2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public partial class EverQuestDPSPlugin : IEverQuestDPSPlugin
SettingsSerializer xmlSettings;
readonly object varianceChkBxLockObject = new object(), nonMatchChkBxLockObject = new object();
readonly string PluginSettingsFileName = $"Config{Path.DirectorySeparatorChar}ACT_EverQuest_English_Parser.config.xml";

#endregion

internal DateTime ParseDateTime(String timeStamp)
Expand Down
18 changes: 0 additions & 18 deletions EverQuestDPSPlugin/EverQuestDPSPluginResource.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions EverQuestDPSPlugin/EverQuestDPSPluginResource.resx
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,9 @@
<data name="MissedMeleeAttack" xml:space="preserve">
<value>(?&lt;attacker&gt;.+) (?:tr(?:ies|y)) to (?&lt;attackType&gt;(\S+|frenzy on)) (?&lt;victim&gt;.+), but (?:miss(?:|es))!(?:\s\((?&lt;damageSpecial&gt;.+)\)){0,1}</value>
</data>
<data name="pluginId" xml:space="preserve">
<value>92</value>
</data>
<data name="pluginName" xml:space="preserve">
<value>EverQuest Damage Per Second Parser</value>
</data>
<data name="PluginSettingsFileName" xml:space="preserve">
<value>Config\ACT_EverQuest_English_Parser.config.xml</value>
</data>
<data name="possesiveOf" xml:space="preserve">
<value>possesiveOf</value>
</data>
Expand Down
2 changes: 1 addition & 1 deletion EverQuestDPSPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.1.0.24")]
[assembly: AssemblyVersion("0.1.0.29")]
[assembly: InternalsVisibleTo("EQDPSPluginUnitTests")]

0 comments on commit 97fe0a9

Please sign in to comment.