Skip to content

Commit

Permalink
Resource manager removal (#14)
Browse files Browse the repository at this point in the history
* exclusion of non zone changes

updated regexes

* Update AssemblyInfo.cs

updated version

* updated version and regex

excludes levitation but still captures zone information

* updated damage shield issue

Updated damage shield match to find attacker strings where the attacker name is entered as a combat action with the possessive portion of the name

* Update AssemblyInfo.cs

updated properties information

* updated version info

moved Non combat regex initializations to a private method
spell resists now on the match list and recorded as no damage

* added two regexes to resource manager

two new resource manager items from object class

* Update AssemblyInfo.cs

updated version

* zone change regex string moved

moved zone change regex to resource manager

* added securestring for version info

updated version info

* method of securestring implementation

Assembly version updated
SecureString implementation on version information from github does not marshal to string without helper method

* new update based on version information

added securestring to convert to a string usable for version information verification
version information from the assembly is now gotten from the assembly methods instead of parsing version information from the name of the loaded assembly

* Update AssemblyInfo.cs

updated version information

* updated version

version information updated to use build number and revision as specified for .net assembly's

* updated version from tag parsing in build script

renamed build script to reflect usage
removed using that is no longer used
removed unused string from resource manager

* Resource manager removed

updated version information
localization now exist in their own namespace
EverQuestDPSPlugin class now has its own resourcemanager class

* Update EverQuestDPSPlugin.csproj (#15)

* Updated version info
  • Loading branch information
FreedomFaighter authored Nov 22, 2023
1 parent 90ca346 commit 320c375
Show file tree
Hide file tree
Showing 9 changed files with 380 additions and 174 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches-ignore:
- 'master'
tags:
- "0.*.*.*"
- "0.*.*"
pull_request:
branches: [ master ]

Expand Down
4 changes: 2 additions & 2 deletions EQDPSPluginUnitTests/EverQuestDPSPluginTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace EQDPSPluginUnitTests
public sealed class EverQuestDPSPluginTests
{
EverQuestDPSPlugin.EverQuestDPSPlugin eqDPSPlugin;
[TestInitialize] public void Init() {
[TestInitialize]
public void Init() {
eqDPSPlugin = new EverQuestDPSPlugin.EverQuestDPSPlugin();
eqDPSPlugin.PopulateRegexNonCombat();
}

[DataTestMethod]
Expand Down
6 changes: 3 additions & 3 deletions EQDPSPluginUnitTests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("EQDPSPluginUnitTests")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyCulture("en-US")]

[assembly: ComVisible(false)]

[assembly: Guid("db458853-081a-4edb-926b-f7c88276cbb2")]

// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]

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

Loading

0 comments on commit 320c375

Please sign in to comment.