• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋
EQLogParser

Utility EQLogParser 2.3.59

Download

Bug Fixes 🐛


Fix tests
(88f9ca1) ~John Kauffman
Fix multiple phrase trigger
(cbd56ed) ~John Kauffman
Fix import multiple phrases
(a64b5e7) ~John Kauffman
- Phrase-specific clear-variable (actionType 7) creates VariableAction
NAG actionType 7 with a phraseId means 'when this specific phrase matches,
clear the variable'. Previously, all clear-variable actions were mapped to
EndTimerClearVariables, which only fires when a timer ends. For triggers
like 'Capture spell casting' where the clear action has no co-occurring
timer, EndTimerClearVariables would never fire — leaving SpellBeingCast
uncleared when a spell is interrupted.
(735842c) ~John Kauffman
- Skip blank template actions with missing actionType
NAG data contains empty template action objects with no actionType field
and all null/default values. These were falling through to the default
switch case and being logged as 'action type -1' dropped features,
causing valid triggers to be marked as Partial. Now skipped silently.
(80670fd) ~John Kauffman
Fix variable format tests
(305f0ab) ~John Kauffman
Fix MatchVariableCondition description to plain sentence form

Remove \n escape sequences that display literally in the UI. Keep
description as a single flowing sentence consistent with other
property grid descriptions.
(ad914e5) ~John Kauffman
Fix NAG pipe-separated contains conditions not matching

NAG uses pipe-separated values in contains conditions (e.g.
{SpellBeingCast} contains "Fireball|Flame Strike") to mean 'contains
any of'. But EQLP's contains operator does a literal substring check,
so the entire string 'Fireball|Flame Strike' was being searched for as
a single value — which never matches.

Fix: split on | and create separate contains clauses joined by ||,
e.g. {SpellBeingCast} contains "Fireball" || {SpellBeingCast} contains
"Flame Strike". Single values (no pipe) remain unchanged.

Updated existing test to use single value; added new test for
pipe-separated multi-value case.
(4c16c94) ~John Kauffman
Fix NAG trigger overlay assignments lost during import

Root cause: triggers were imported BEFORE overlays, so
ValidateOverlays() in TriggerStateDB.Import() found no matching
overlay nodes and stripped all SelectedOverlays references to [].

Fix: swap import order — call ImportNagOverlays() before
ImportTriggers() so that overlay nodes exist in the tree when
triggers are validated.
(c35d4ff) ~John Kauffman
Fix TextOverlayWrap not updating live when changed in property grid

The ValueChanged handler updates Application.Current.Resources for each
overlay property as the user edits it, but was missing a case for
TextOverlayWrap. This meant changing 'Text Wrap' in the property grid
updated the data model but didn't update the resource dictionary that
the TextBlocks are bound to via SetResourceReference.

Added noTextWrapItem.PropertyName case that updates
TextOverlayTextWrapping-{node.Id} resource and enables save button,
following the same pattern as fontFamilyItem, fontWeightItem, etc.
(456f9cb) ~John Kauffman
Fix TextOverlayWrap not updating when changed via property grid

Root cause: CreateBlock() set TextWrapping as a local value from
NoTextWrap, so changing it in the property grid didn't propagate to
existing TextBlocks. Other overlay properties (font family, size, etc.)
work because they use SetResourceReference with named resources that
get updated in Application.Current.Resources.

Fix:
- Rename NoTextWrap → TextOverlayWrap (default true = wrap enabled)
across data model, NagUtil parsing, TriggerUtil sync, property grid,
and tests
- Add TextOverlayTextWrapping-{node.Id} resource reference pattern
following the same approach as TextOverlayFontFamily etc.
- Set the resource in TriggerUtil.Copy() when loading/syncing overlays
- Use SetResourceReference(TextBlock.TextWrappingProperty, ...) in
CreateBlock() instead of direct local value assignment
- Rename property grid display from 'No Text Wrap' to 'Text Wrap'
(default on)
- Update NagUtil tests: NoTextWrap → TextOverlayWrap, assertions
inverted (nowrap → false, default → true)
(5fd7e9b) ~John Kauffman
Fix backup filename showing 1.0.0 instead of real version

typeof(FileUtil).Assembly returns EQLogParser.Utils.dll (always 1.0.0)
instead of the main EQLP executable. Use Assembly.GetEntryAssembly() to
get the actual application assembly, falling back to typeof(FileUtil).Assembly
when null (e.g., in test contexts).
(74495bb) ~John Kauffman
Fix NAG trigger folder hierarchy lost during import

ConvertTriggers returned a flat list of folder-wrapped nodes, but the
first Import() overload strips the top-level wrapper (designed for GINA's
single root node). This caused single-level folders like 'Orphaned Triggers'
to lose their folder entirely, and multi-level folders like 'Raids/...' to
lose their top-level 'Raids' parent.

Fix: wrap all NAG trigger nodes in a root ExportTriggerNode, consistent with
GINA's export format, so the first Import() correctly skips the root and
processes each folder/trigger node through the second Import() overload.
(4778814) ~John Kauffman
Fix NAG overlay imports being silently skipped

ConvertOverlays returns flat leaf nodes (OverlayData, no child Nodes),
but the first Import() overload only recursed into nodes with child Nodes.
Added else-if branch to process overlay leaf nodes directly via the second
Import() overload which handles OverlayData.
(9c8668c) ~John Kauffman
Fix import boolean NAG
(5bbcb01) ~John Kauffman
Fix for correcting missing path
(1a766f2) ~John Kauffman
Fix to avoid opening file chooser when selecting file programatically
(d06c203) ~John Kauffman

Documentation 📕


Doc updates
(0b47b5d) ~John Kauffman
Doc updates
(32976fc) ~John Kauffman
Doc updates
(02e9027) ~John Kauffman

Testing 🧪


Test updates
(c440e78) ~John Kauffman
Test fixes
(f8924a4) ~John Kauffman
Test updates
(c12d4d8) ~John Kauffman

〰️Commits​


(8188587) ~John Kauffman
Nag fixes
(28c9550) ~John Kauffman
Nag improvements
(44b1b45) ~John Kauffman
Updated migrate nag database menu
(5ad4a8f) ~John Kauffman
More updates to triggers with multiple capture phrases
(c2e39dc) ~John Kauffman
Code cleanup
(66af5be) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(bbdaf7f) ~John Kauffman
More test updates
(a31d7e7) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(e02ee6c) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(2e37f87) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(d3061b3) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(9beb805) ~John Kauffman
Moved import NAG DB feature
(0ebd0e3) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(2a4eaf4) ~John Kauffman
Added fallback for phrase actions
(4a3b4e3) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(685f960) ~John Kauffman
(6594de1) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(e7de56c) ~John Kauffman
Implent nag conunters
(ec41d64) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(47ff80a) ~John Kauffman
Added unit tests for import from nag
(952d75e) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(1e6e7d3) ~John Kauffman
Add user-friendly descriptions for dropped features in HTML report

Replace cryptic feature names like 'set variable (BrdEpic1.5Caster)'
with plain-language explanations:

- set variable: explains that EQLP requires regex named groups
instead, and the trigger still works but stored values may be empty
- class level filtering: explains EQLP doesn't support this
- Other features fall back to their original name

This makes the Partial status reason column much more useful for
users who don't know NAG internals.
(b433d95) ~John Kauffman
Include variable name in dropped feature reason for unsupported actions

When an action type like 'set variable' (type 5) is dropped, include
the variable name in the reason string so users can identify which
specific variable was involved. E.g. 'set variable (BrdEpic1.5Caster)'
instead of just 'set variable'.
(55be2bf) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(ddbf4e7) ~John Kauffman
Map NAG clear variable actions to EndTimerClearVariables

NAG actionType 7 ('clear variable') was being dropped as an unsupported
feature, marking triggers as Partial. EQLP already supports clearing
variables when a timer ends via the EndTimerClearVariables field.

Now maps actionType 7's variableName directly to EndTimerClearVariables,
so triggers like 'Vainglorious Shout VIII' that clear SpellBeingCast
on timer end will work correctly instead of being marked Partial.

Added test: ConvertTriggers_ActionType7_ClearVariable_MappedToEndTimerClearVariables
(4074ce3) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(9114585) ~John Kauffman
Mark triggers with missing audio files as Partial instead of Imported

Triggers that import successfully but reference sound files not found
on disk should be 'Partial' (imported but incomplete), not 'Imported'.
This surfaces them in the HTML report's status sorting (Skipped →
Partial → Success) so users notice they need to locate the missing
files. Also adds a reason string listing the count of missing files.
(712682f) ~John Kauffman
Simplify NAG import report filename and dialog label

- Rename HTML report from 'eqlp-import-report-yyyy-MM-dd_HH-mm-ss.html'
to just 'nag-import.html' in the log directory. The timestamped name
was unnecessarily long; a simple fixed name is cleaner.
- Change import dialog heading from 'Detailed HTML Report:' to 'Report:'
(514ffe7) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(264ffaa) ~John Kauffman
Cleanup NAG import dialog and highlight missing audio files

- Remove the list of missing audio files from the import dialog.
People can check the HTML report for that info. This keeps the
dialog concise instead of wasting space with potentially dozens
of file paths.
- Change missing audio file styling in HTML report from grey
(#999) to bold red (#b71c1c) so they stand out as issues.
(0b14879) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(2b23de7) ~John Kauffman
Cleanup MatchVariableCondition description in triggers view

The old description was 556 chars with excessive syntax documentation,
operator lists, and literal \n sequences that showed as text in the UI.
Replaced with a brief description plus concise examples using == and >,
and a pointer to the documentation.
(dc6807a) ~John Kauffman
Map NAG timerBackgroundColor to EQLP IdleColor

NAG timer overlays have separate colors for the active portion
(timerColor) and the background/track (timerBackgroundColor), but
only timerColor was being mapped. The timer bar track defaulted to
red (#FF8f1515) instead of the NAG-specified color.

Now maps timerBackgroundColor → IdleColor, preserving the original
dark brown (rgba(67,62,16,0.75)) for overlays like 'Quickies'.
(04e70d7) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(5b4d39e) ~John Kauffman
Shorten NAG folder dialog description to prevent text wrapping

The FolderBrowserDialog wraps long descriptions awkwardly (every few
words). Shortened from 'Select the directory containing the NAG database
files (overlays-database.json, etc.)' to 'Select the directory containing
your NAG database files.'
(ed2e479) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(df75bd9) ~John Kauffman
Simplify NAG import progress dialog text
(56f6b39) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(f682441) ~John Kauffman
Dark theme + sort HTML report by status, rename Imported to Success

- Apply dark theme CSS (VS-style) to HTML import report:
dark backgrounds (#1e1e1e, #2d2d2d), cyan headers (#4fc3f7),
adjusted badge colors for dark mode readability
- Sort report rows by status: Skipped first, then Partial, then Success
- Rename 'Imported' to 'Success' in report display text (badge labels and
summary stats); internal Status values remain unchanged
- Add WriteImportReportHtml_ResultsSortedByStatus_SkippedFirst test verifying
sort order
- Update existing HTML tests: check for 'Success' instead of 'Imported',
verify dark theme CSS is present
(b93a52d) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(56c18cd) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(14d96e5) ~John Kauffman
Store HTML import report in log directory with timestamp + add Open Report button

- Save HTML report only in the EQLP log directory (same dir as error log),
not in the NAG database directory, to avoid polluting user data
- Timestamped filename: eqlp-import-report-yyyy-MM-dd_HH-mm-ss.html
- Added GetLogDirectory() helper that reads the log4net FileAppender path
- Added 'Open Report' button to the NAG Import Complete dialog that opens
the HTML report in the default web browser
(cda38fd) ~John Kauffman
Remove CSV import report, keep HTML only

The CSV report (WriteImportReport + EscapeCsv) had no external consumers
and the HTML report is strictly more capable. Removed from NagUtil.cs
and TriggerUtil.cs; updated tests to use WriteImportReportHtml instead.
(3af0dc3) ~John Kauffman
Update NagUtil tests for comment format + add HTML report tests

- Update ConvertTriggers_Comments_PreservedInNagComment to assert that
'Original:' prefix is NOT present (removed in commit # [a63cce8](https://github.com/kauffman12/EQLogParser/commit/a63cce81))
- Update ConvertTriggers_DroppedFeatures_ListedInComment to check for
'EQLP Import Notes:' instead of 'Dropped:' (renamed in commit # [a63cce8](https://github.com/kauffman12/EQLogParser/commit/a63cce81))
- Add WriteImportReportHtml_ValidResults_CreatesHtml — verifies HTML
structure, summary stats, trigger names, folder paths, missing audio
files, and badge CSS classes
- Add WriteImportReportHtml_EmptyResults_CreatesHtml — verifies graceful
handling of empty results list
- Add WriteImportReportHtml_SpecialCharacters_AreHtmlEncoded — verifies
HTML encoding of < > & characters in trigger names
- Add WriteImportReportHtml_RootFolder_ShowsEmRoot — verifies root folder
path displays as <em>(root)</em>
(8eaa9b6) ~John Kauffman
Add HTML import report alongside CSV

Adds WriteImportReportHtml() which generates a styled HTML report with
summary stats (imported/partial/skipped counts), color-coded status badges,
folder path display, and expandable missing audio file listings. The
report is generated as eqlp-import-report.html in the NAG database
directory, and both paths are shown in the import summary dialog.
(a39e8a5) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(823d38c) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(85be2a4) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(d2c76fe) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(e885ed8) ~John Kauffman
Changed import item
(a63cce8) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(72f9940) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(5f9f08f) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(f6f3678) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(868cff0) ~John Kauffman
Merge branch 'master' into develop
(409f91b) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(46b8f52) ~John Kauffman
Updated custom audio selection
(3e7798f) ~John Kauffman
Merge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(b5e47f0) ~John Kauffman
Code cleanup
(9b91446) ~John Kauffman
Handle custom audio files
(eaf3e65) ~John Kauffman
Import nag v1
(87ccb1d) ~John Kauffman

Bug Fixes 🐛


(c90c042) ~John Kauffman
Fix alt timername and custom variables
(08849ef) ~John Kauffman

〰️Commits​


(c860caa) ~John Kauffman
Update timer variable performance
(2ddcb10) ~John Kauffman
Resolve _variables last and make timer updates for them dynamic
(7c3f96b) ~John Kauffman

Bug Fixes 🐛


Fix style issues and improved locking
(8d56774) ~John Kauffman
Fix trigger tester
(1ae4d79) ~John Kauffman
Fix tests
(1cc590a) ~John Kauffman
(c3497dd) ~John Kauffman
Fix resource leak and added tests
(3da4357) ~John Kauffman
Fix for end clear variable not saving
(d221dc0) ~John Kauffman
Fix description for end clear variables
(09c7846) ~John Kauffman
Fix formatting
(4e013d4) ~John Kauffman
Fix variable TTS related to timeout
(7f01478) ~John Kauffman
Fix variable expiration
(8f0cf23) ~John Kauffman
Fix loading variable settings
(1ad5552) ~John Kauffman
Fixed matches variable validator
(a59c0a0) ~John Kauffman
Fix for text value being cut short
(256bc20) ~John Kauffman
Fix event handling and more UI updates
(dc200b3) ~John Kauffman

Performance 🏎️


Performance cleanup
(1bc54e2) ~John Kauffman
Performance updates for variables
(4f94b98) ~John Kauffman

Styling 🦋


Style cleanup
(8c04b58) ~John Kauffman

〰️Commits​


(d2ecd7a) ~John Kauffman
Added trigger variables
(f04f901) ~John Kauffman
Review fixes
(4560fe1) ~John Kauffman
Updated dialog and docs
(feee4b3) ~John Kauffman
(a53d887) ~John Kauffman
Bug fixes
(552de1f) ~John Kauffman
Added progress dialog for import
(7785320) ~John Kauffman
(427692f) ~John Kauffman
Added variable clear when timer ends
(4a1a023) ~John Kauffman
Added command to clear variables
(d191895) ~John Kauffman
Changed to Fixed
(b803939) ~John Kauffman
Renamed Value option
(82e7080) ~John Kauffman
Changed internal types to number
(3e24ce3) ~John Kauffman
Renamed Text to Value
(91190be) ~John Kauffman
Updated docs
(47c0aa9) ~John Kauffman
Made variable condition validation smarter
(5cd4213) ~John Kauffman
Add validation for match variables field
(22798ba) ~John Kauffman
(154d3d4) ~John Kauffman
Added trigger variables
(3503187) ~John Kauffman
Updated tab names and fixes
(42c4cf8) ~John Kauffman
Added TTL to variables and updated style
(5954d52) ~John Kauffman
UI cleanup and model updates
(da52c33) ~John Kauffman
UI update for variables tab on trigger properties
(65ca6c4) ~John Kauffman

〰️Commits​


(d79baee) ~John Kauffman

Bug Fixes 🐛


Fix tests
(c219c16) ~John Kauffman

〰️Commits​


(0227f3c) ~John Kauffman
Expand all levels
(fda2354) ~John Kauffman
Handle days when displaying timer
(16e0d8c) ~John Kauffman
Merge branch 'master' into picode
(ed30a2d) ~John Kauffman
PR # [392](https://github.com/kauffman12/EQLogParser/pull/392): text/timer overlay backgrounds rendering black on Wayland/Wine
(2f4391e) ~kauffman12
Extend {ts} labeled formats, add tree grid expand/collapse, and broaden trigger search

- Support labeled time formats in {ts} trigger tag (e.g. 4h:20m:53s, 1d:10h:20m:50s)
with optional components and flexible ordering. Update UpdateTimePattern regex
and refactor SimpleTimeToSeconds to detect and parse d/h/m/s suffixes.

- Add "Expand All" and "Collapse All" context menu items to all SfTreeGrid views
(Damage/Healing/Tanking Breakdown, Damage Summary, Taunt Stats, Random Viewer).
Commands are enabled only on SfTreeGrid targets with nodes.

- Extend trigger search to match against Comments, PreviousPattern,
EndEarlyPattern (1-3), and AltTimerName in addition to Name and Pattern.
(6936d5b) ~John Kauffman
Merge branch 'master' into picode
(9051155) ~John Kauffman
Consolidated safe file write
(c4fa0b1) ~John Kauffman
Fix text/timer overlay backgrounds rendering black on Wayland/Wine

The text and timer overlays are AllowsTransparency windows that fill their
background and border with a fully-transparent brush (#00000000, alpha 0).
On wlroots-based Wayland compositors (e.g. Hyprland) running under Wine/Proton,
fully-transparent regions are not alpha-blended and render as opaque black,
while areas covered by drawn content (timer bars, text) composite correctly.
Windows and KDE/KWin are not affected.

Give the background and border a minimal non-zero alpha (#01000000, 1/255) so
the whole surface goes through the normal blend path. The change is visually
imperceptible and produces identical output on Windows and KDE.
(8fec127) ~stvsu
PR # [389](https://github.com/kauffman12/EQLogParser/pull/389): Add support for 'cleave' 'reave' and 'smite' for DPS parser
(035bfa1) ~kauffman12
- Add support for 'cleave' 'reave' and 'smite' for DPS parser
(bbcf45f) ~Cord B
Removed unused interface
(f9f6c51) ~John Kauffman
Updated install files list
(a7122a4) ~John Kauffman
Update tests
(fc1751b) ~John Kauffman
Put iaction back
(08dbdd8) ~John Kauffman
Updated tests
(1e0390f) ~John Kauffman
Load real spell data for tests
(4554849) ~John Kauffman
Damage and healing validator tests
(5a2dca7) ~John Kauffman
Added tests and moved util classes to their own project
(d108ea6) ~John Kauffman
Changed order or shutdown APIs
(1909420) ~John Kauffman
Updated to use pattern matching
(08774fd) ~John Kauffman

Bug Fixes 🐛


Fix deadlock
(cb31b97) ~John Kauffman
Fix priority for theme updates
(535a007) ~John Kauffman
Fix default log list
(1d0f89a) ~John Kauffman
Fix event cleanup
(1dc161b) ~John Kauffman
(b5c8b43) ~John Kauffman
(1883dc4) ~John Kauffman
(50c4738) ~John Kauffman
Fix timer lock
(93bb67d) ~John Kauffman
Fix bottles index
(53ef049) ~John Kauffman

〰️Commits​


Update 2.3.54
(6733be3) ~John Kauffman
Updated libraries
(1dcee80) ~John Kauffman
Improve handling of trigger log lists
(cd78607) ~John Kauffman
(747c459) ~John Kauffman
Clear logs from one spot
(29a0ab6) ~John Kauffman
Update timer usage
(0d23d52) ~John Kauffman
Changed timer back to throttle/one shot
(e0bf067) ~John Kauffman
Restrict possibly player name to not be unknown
(32fb07d) ~John Kauffman
Cleanup timer lock
(ba5aa23) ~John Kauffman
Add verified player option
(e9bfee0) ~John Kauffman
Renamed theme manager
(f0e8e30) ~John Kauffman
Breakup main actions
(279a700) ~John Kauffman
Breakup main actions
(9e158e5) ~John Kauffman
Remove cleanup of quickshares
(e549636) ~John Kauffman
Add trigger log manager to reduce ui dependence
(c53ac20) ~John Kauffman
Update for config util status
(0a16ae2) ~John Kauffman
Remove UI dependence
(184a9a3) ~John Kauffman
Added a quick search manager
(de376b8) ~John Kauffman
2.3.53 update
(9ee5af7) ~John Kauffman
Update bottles info again
(30ac2e2) ~John Kauffman
Merged v2.3.53
(b26e591) ~John Kauffman

Bug Fixes 🐛


Fix possibly cut/paste error and fixed player names from healing spells. added paddingleft, right, center to format options in triggers
(18e247c) ~John Kauffman
(f71bc4b) ~John Kauffman
(d71f4d7) ~John Kauffman
(4423448) ~John Kauffman
Fix app cs
(d6305d5) ~John Kauffman
Fix formatting
(353b3e3) ~John Kauffman
Fix formatting
(bace40c) ~John Kauffman
Fix tests
(033d2fd) ~John Kauffman
Fix compiler warnings
(4006744) ~John Kauffman
Fix tests
(50e5b79) ~John Kauffman
Fix events not being cleaned up
(c8d8d92) ~John Kauffman
Fix clipboard calls
(fbaf1af) ~John Kauffman
(fc15365) ~John Kauffman
Fixes for spell counts hopefully
(8e6dc1d) ~John Kauffman
(95e6bd0) ~John Kauffman
(af91378) ~John Kauffman
Fix context menu
(17337d9) ~John Kauffman
Fix raid total percent for groups
(f738a04) ~John Kauffman
Fix expanding
(235f2ca) ~John Kauffman
(7b08e5d) ~John Kauffman
(f5ba754) ~John Kauffman
(323b1ae) ~John Kauffman

Performance 🏎️


Perf updates
(dfa3194) ~John Kauffman

Refactor ❤️


Refactor managers
(bb76181) ~John Kauffman

Testing 🧪


Test groupid sort
(145e8a2) ~John Kauffman

〰️Commits​


Update docs for padleft/padright
(c6408ae) ~John Kauffman
Merge branch 'develop'
(24f65b2) ~John Kauffman
Remove generated files
(c574a9d) ~John Kauffman
(d5911f3) ~John Kauffman
Added chat db cleanup
(7691cf3) ~John Kauffman
Remove Linq from hotpaths
(c1e2d39) ~John Kauffman
Update to 2.3.51
(44ea04e) ~John Kauffman
Added group view, best sec for tanking, and lots of re-org
(fb469ab) ~John Kauffman
Squashed commit of the following:

commit commit # [09cbb47](https://github.com/kauffman12/EQLogParser/commit/09cbb47e77745efc6ca8ca36e64cd94c1c7210cb)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 16:03:22 2026 -0400

remove id

commit commit # [5474050](https://github.com/kauffman12/EQLogParser/commit/5474050ca7b32310a26424bbce3a1d0e0a37cd29)
Merge: commit # [8f44970](https://github.com/kauffman12/EQLogParser/commit/8f449707) commit # [eb824dd](https://github.com/kauffman12/EQLogParser/commit/eb824dd7)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:56:18 2026 -0400

Merge branch 'master' into opencode2

commit commit # [8f44970](https://github.com/kauffman12/EQLogParser/commit/8f449707f85e959c6c630db422e70036ae20d000)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:52:48 2026 -0400

fix warnings

commit commit # [df8bc21](https://github.com/kauffman12/EQLogParser/commit/df8bc2184573a8b0d3e7c9de2ca4968b751c70b2)
Merge: commit # [45fe494](https://github.com/kauffman12/EQLogParser/commit/45fe4940) commit # [3d3a09a](https://github.com/kauffman12/EQLogParser/commit/3d3a09ad)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:24:43 2026 -0400

Merge branch 'develop' into opencode2

commit commit # [45fe494](https://github.com/kauffman12/EQLogParser/commit/45fe4940e5dd19e720b33bf1902f6e04a447a723)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:11:29 2026 -0400

big reorg
(2c84081) ~John Kauffman
Merge branch 'master' into develop
(ec71d06) ~John Kauffman
Merge branch 'opencode' into develop
(3d3a09a) ~John Kauffman
Util cleanup
(29c7057) ~John Kauffman
Updated standards
(66c193c) ~John Kauffman
(e79e6e5) ~John Kauffman
(4743204) ~John Kauffman
More cleanup
(c4ab881) ~John Kauffman
Update ignore file
(e90bfcb) ~John Kauffman
Removed invalid file
(a3428f4) ~John Kauffman
(86300a9) ~John Kauffman
Renaming some classes
(d54f0a9) ~John Kauffman
Format fixes
(6b5f609) ~John Kauffman
Created adps tracker
(2bb372e) ~John Kauffman
Squashed commit of the following:

commit commit # [96b3d4f](https://github.com/kauffman12/EQLogParser/commit/96b3d4fb1f0de6ea4157b120335e5666f0a23905)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 09:44:46 2026 -0400

handle group id in who

commit commit # [bace40c](https://github.com/kauffman12/EQLogParser/commit/bace40c4c80f307d8244bcf6d64622e0d75d820e)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:24:20 2026 -0400

fix formatting

commit commit # [83e5ae0](https://github.com/kauffman12/EQLogParser/commit/83e5ae0dde41e5688c5ff1593debc3568ebe4395)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:21:19 2026 -0400

better interface use

commit commit # [033d2fd](https://github.com/kauffman12/EQLogParser/commit/033d2fd86a05f4ea81c0265493d5609d6d8e2a83)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:08:06 2026 -0400

fix tests

commit commit # [22162de](https://github.com/kauffman12/EQLogParser/commit/22162de776e035196655cf6d8b8e5ef72cb2117d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 14:09:24 2026 -0400

update testers

commit commit # [c6a141f](https://github.com/kauffman12/EQLogParser/commit/c6a141f866c36b8f6a558477cdd294f4d30b854a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 12:22:31 2026 -0400

new tests

commit commit # [c914c48](https://github.com/kauffman12/EQLogParser/commit/c914c4875069441e56eeff82230d9383c46f32ad)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:38:02 2026 -0400

more performance updates

commit commit # [0499dff](https://github.com/kauffman12/EQLogParser/commit/0499dff928ddad82921fae56986b07f52903b39c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:36:07 2026 -0400

minor updates

commit commit # [4006744](https://github.com/kauffman12/EQLogParser/commit/40067447415a4d783786ec967f234f8300ef669a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:29:00 2026 -0400

fix compiler warnings

commit commit # [7eb4e96](https://github.com/kauffman12/EQLogParser/commit/7eb4e96b4a4af45d37d9711fcb0583dce7f48e09)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:10:57 2026 -0400

removed extra ToArray()

commit commit # [50e5b79](https://github.com/kauffman12/EQLogParser/commit/50e5b79b3ee479c1b4082be51bf2b2c0e68c4ded)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:51:38 2026 -0400

fix tests

commit commit # [77c3554](https://github.com/kauffman12/EQLogParser/commit/77c35544eeef341689928e92117e5080dab00449)
Merge: commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e) commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:10:43 2026 -0400

Merge remote-tracking branch 'refs/remotes/origin/opencode' into opencode

commit commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e7d1629fdc4e374e0ae8779ca913b8a2c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:09:27 2026 -0400

perf updates

commit commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921f84b73f097396cd8dffba824fc21778c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 03:22:47 2026 -0400

fix events not being cleaned up

commit commit # [4a00575](https://github.com/kauffman12/EQLogParser/commit/4a00575c84cec7be32339bd3b1807820976f1f02)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 02:08:35 2026 -0400

cleanup

commit commit # [32784fe](https://github.com/kauffman12/EQLogParser/commit/32784fe81b1a886b4da65e6ac3eb67ee76466440)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:46:26 2026 -0400

updated standards

commit commit # [d0c68e7](https://github.com/kauffman12/EQLogParser/commit/d0c68e7e6ea827c33017631bfa9861cec168e648)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:21:04 2026 -0400

latest

commit commit # [075b180](https://github.com/kauffman12/EQLogParser/commit/075b180ff03d19f5b4a7fd06e064d63bec5dce8d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 00:18:08 2026 -0400

updated damage summary combo

commit commit # [f4d39e5](https://github.com/kauffman12/EQLogParser/commit/f4d39e5e2f0ce9c1b3c80ec485fe6edd0fb9ccb1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 23:45:30 2026 -0400

more fixes

commit commit # [023fb9e](https://github.com/kauffman12/EQLogParser/commit/023fb9e8699370b38aee2d48d3bc1f01d13e6109)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:42 2026 -0400

Revert "Revert "group cleanup""

This reverts commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1).

commit commit # [b2babad](https://github.com/kauffman12/EQLogParser/commit/b2babadb947279ddd9cd00aee9bde9e6d79ee587)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:14 2026 -0400

Revert "test groupid sort"

This reverts commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7).

commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:25:06 2026 -0400

Revert "group cleanup"

This reverts commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b).

commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:20:18 2026 -0400

test groupid sort

commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:03:07 2026 -0400

group cleanup

commit commit # [91fcc36](https://github.com/kauffman12/EQLogParser/commit/91fcc3693566104a67b5293c1801a43424f8941d)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:47:49 2026 -0400

cleanup

commit commit # [fbaf1af](https://github.com/kauffman12/EQLogParser/commit/fbaf1af1d76c24bf17d64f98fb042859dd462dc3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:14:10 2026 -0400

fix clipboard calls

commit commit # [2e78a78](https://github.com/kauffman12/EQLogParser/commit/2e78a780e1ffd9184381d5caf2af1245aac011f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:03:16 2026 -0400

cleanup

commit commit # [fc15365](https://github.com/kauffman12/EQLogParser/commit/fc15365f2d2e125de241454be7d89a122b00d230)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:38:38 2026 -0400

fixes

commit commit # [8e6dc1d](https://github.com/kauffman12/EQLogParser/commit/8e6dc1d0a85545c83497b8f48a2377ddafdf95e6)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:18:53 2026 -0400

fixes for spell counts hopefully

commit commit # [5cb4155](https://github.com/kauffman12/EQLogParser/commit/5cb41554be363a7780ae3eddc4f1704d2bdd6866)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:25:55 2026 -0400

minor updates

commit commit # [52065e7](https://github.com/kauffman12/EQLogParser/commit/52065e705abdcf8c95fa85f1cf99e3009f7d72f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:19:24 2026 -0400

updated delete in pet table

commit commit # [e2c1734](https://github.com/kauffman12/EQLogParser/commit/e2c173433f989c89cd2230da10ab96ab3f52acc1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:52:30 2026 -0400

format updates

commit commit # [a90c13d](https://github.com/kauffman12/EQLogParser/commit/a90c13dafdc171b63b7d44f527bbfb73322a1909)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:44:28 2026 -0400

latest

commit commit # [95e6bd0](https://github.com/kauffman12/EQLogParser/commit/95e6bd027fc24eb952c9a2d66d6ec6ae606d2f24)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:20:44 2026 -0400

fixes

commit commit # [1b21fc4](https://github.com/kauffman12/EQLogParser/commit/1b21fc4967c3886bde99b5a37e968717257d2c7e)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:55:07 2026 -0400

update for class picker

commit commit # [6e83187](https://github.com/kauffman12/EQLogParser/commit/6e83187ad15773b2c78f6015bb6ec37ff3e748ac)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:21:18 2026 -0400

updates for pet player dropdown

commit commit # [a09067a](https://github.com/kauffman12/EQLogParser/commit/a09067a1b8113d5d29c01ce2eb8966055f6133ef)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 11:53:50 2026 -0400

single combobox idea

commit commit # [8d186f7](https://github.com/kauffman12/EQLogParser/commit/8d186f7d8a81e6c8e648e832b0096db71a2e2f7f)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:34:01 2026 -0400

updated player column

commit commit # [aa8c737](https://github.com/kauffman12/EQLogParser/commit/aa8c737f326678a9890a22c8b6d301c68103f406)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:06:40 2026 -0400

latest

commit commit # [a565fe7](https://github.com/kauffman12/EQLogParser/commit/a565fe78c06256c4ec9b13933ccaad8d873daf23)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:57:14 2026 -0400

more changes

commit commit # [ff97383](https://github.com/kauffman12/EQLogParser/commit/ff97383a9127e32f306d786728a09c83e812b4df)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:26:18 2026 -0400

more

commit commit # [ca0e078](https://github.com/kauffman12/EQLogParser/commit/ca0e0780b016b87e6838a14bab61237b64ea022d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 19:33:48 2026 -0400

another mouse update

commit commit # [d26e2b9](https://github.com/kauffman12/EQLogParser/commit/d26e2b96218bf459b88e03526abeb19638b76d2a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 18:03:03 2026 -0400

mouse click test

commit commit # [af91378](https://github.com/kauffman12/EQLogParser/commit/af913786d64a09f38d18aca6edcaf321b3c4c061)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 17:39:16 2026 -0400

fixes

commit commit # [c60bc04](https://github.com/kauffman12/EQLogParser/commit/c60bc045cc43067c4be261ccf5f2670d814fdb0d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 16:41:31 2026 -0400

updated pet mapping table

commit commit # [fcf9d40](https://github.com/kauffman12/EQLogParser/commit/fcf9d404da2f53d06542bca884c1f01f70520047)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:38:45 2026 -0400

added modified get selected stats

commit commit # [17337d9](https://github.com/kauffman12/EQLogParser/commit/17337d926ae67ac88785fb369697a081c2d29e65)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:13:03 2026 -0400

fix context menu

commit commit # [0657e3e](https://github.com/kauffman12/EQLogParser/commit/0657e3e8ceee95390999af436d3bc3cb8a29e918)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:53:51 2026 -0400

cleanup

commit commit # [f738a04](https://github.com/kauffman12/EQLogParser/commit/f738a0402e358507705f6f28b8885ea7e85f689a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:39:21 2026 -0400

fix raid total percent for groups

commit commit # [0d5fe2f](https://github.com/kauffman12/EQLogParser/commit/0d5fe2f2d39843eea7a6685ecd1aaa14a1a9405c)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:25:41 2026 -0400

changed to IList

commit commit # [ce0022a](https://github.com/kauffman12/EQLogParser/commit/ce0022a65df58236dc151cf95384633a98560fe9)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:02:14 2026 -0400

cleanup

commit commit # [cc6be5e](https://github.com/kauffman12/EQLogParser/commit/cc6be5e9100511f54e92bfadde896c5f3cad4ea5)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:56:52 2026 -0400

cleanup

commit commit # [209632e](https://github.com/kauffman12/EQLogParser/commit/209632e3c8f9bd2202d81fe0d42b6bfc1a1fd184)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:53:09 2026 -0400

added icons and updated combobox UI

commit commit # [31097d1](https://github.com/kauffman12/EQLogParser/commit/31097d19314336ddbce7a2097dcc0cbd6e5ef788)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 00:05:50 2026 -0400

Revert "use syncfusion dropdown"

This reverts commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9).

commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 21:17:10 2026 -0400

use syncfusion dropdown

commit commit # [c8ed458](https://github.com/kauffman12/EQLogParser/commit/c8ed458e57cd7b95ac9271babaee46227ae3f02b)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 18:26:17 2026 -0400

more updates

commit commit # [235f2ca](https://github.com/kauffman12/EQLogParser/commit/235f2ca8890f9435626b0355e31249243083b2f0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 16:22:53 2026 -0400

fix expanding

commit commit # [9c1cf2e](https://github.com/kauffman12/EQLogParser/commit/9c1cf2ede6560210ec665c734205b80d66847db5)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 14:07:21 2026 -0400

new idea

commit commit # [ee2c27d](https://github.com/kauffman12/EQLogParser/commit/ee2c27d24db42ebd621325dd231507f914d60537)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 11:44:33 2026 -0400

more changes

commit commit # [7b08e5d](https://github.com/kauffman12/EQLogParser/commit/7b08e5d64c5a91ac10f56d8411fcc2df6df593a0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 10:33:10 2026 -0400

fixes

commit commit # [31c695e](https://github.com/kauffman12/EQLogParser/commit/31c695e96b966bb97472917b534cc40df7754f8e)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 00:43:43 2026 -0400

more updates

commit commit # [f5ba754](https://github.com/kauffman12/EQLogParser/commit/f5ba754eaa49f11adbf7ed2509bc2928f2696a84)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:53:06 2026 -0400

fixes

commit commit # [96c2d05](https://github.com/kauffman12/EQLogParser/commit/96c2d05d34ed0ae723f6ca710d196c06fc327054)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:16:59 2026 -0400

added dynamic group change

commit commit # [0c94b1a](https://github.com/kauffman12/EQLogParser/commit/0c94b1af3112a460446db8fad5fd8c5f623a8ef9)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:22:35 2026 -0400

update group column width

commit commit # [323b1ae](https://github.com/kauffman12/EQLogParser/commit/323b1ae3ca2673872f11ca73600b892550bfcd21)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:09:03 2026 -0400

fixes

commit commit # [1d3bde1](https://github.com/kauffman12/EQLogParser/commit/1d3bde1a6c9d7971176fcb75afe77f8e70b688cb)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 01:40:23 2026 -0400

opencode added group breakdown

commit commit # [f86551a](https://github.com/kauffman12/EQLogParser/commit/f86551a1c3a704e78bcd0047e063c3e9e9613c68)
Author: John Kauffman <[email protected]>
Date: Tue Apr 14 18:55:04 2026 -0400

overlay fixes
(6cbb5ce) ~John Kauffman
Handle group id in who
(96b3d4f) ~John Kauffman
Better interface use
(83e5ae0) ~John Kauffman
Update testers
(22162de) ~John Kauffman
New tests
(c6a141f) ~John Kauffman
More performance updates
(c914c48) ~John Kauffman
Minor updates
(0499dff) ~John Kauffman
Removed extra ToArray()
(7eb4e96) ~John Kauffman
Merge remote-tracking branch 'refs/remotes/origin/opencode' into opencode
(77c3554) ~John Kauffman
(4a00575) ~John Kauffman
Updated standards
(32784fe) ~John Kauffman
(d0c68e7) ~John Kauffman
Updated damage summary combo
(075b180) ~John Kauffman
More fixes
(f4d39e5) ~John Kauffman
Revert "Revert "group cleanup""

This reverts commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1).
(023fb9e) ~John Kauffman
Revert "test groupid sort"

This reverts commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7).
(b2babad) ~John Kauffman
Revert "group cleanup"

This reverts commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b).
(72ce4f1) ~John Kauffman
Group cleanup
(599f20f) ~John Kauffman
(91fcc36) ~John Kauffman
(2e78a78) ~John Kauffman
Minor updates
(5cb4155) ~John Kauffman
Updated delete in pet table
(52065e7) ~John Kauffman
Format updates
(e2c1734) ~John Kauffman
(a90c13d) ~John Kauffman
Update for class picker
(1b21fc4) ~John Kauffman
Updates for pet player dropdown
(6e83187) ~John Kauffman
Single combobox idea
(a09067a) ~John Kauffman
Updated player column
(8d186f7) ~John Kauffman
(aa8c737) ~John Kauffman
More changes
(a565fe7) ~John Kauffman
(ff97383) ~John Kauffman
Another mouse update
(ca0e078) ~John Kauffman
Mouse click test
(d26e2b9) ~John Kauffman
Updated pet mapping table
(c60bc04) ~John Kauffman
Added modified get selected stats
(fcf9d40) ~John Kauffman
(0657e3e) ~John Kauffman
Changed to IList
(0d5fe2f) ~John Kauffman
(ce0022a) ~John Kauffman
(cc6be5e) ~John Kauffman
Added icons and updated combobox UI
(209632e) ~John Kauffman
Revert "use syncfusion dropdown"

This reverts commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9).
(31097d1) ~John Kauffman
Use syncfusion dropdown
(4a5a2cc) ~John Kauffman
More updates
(c8ed458) ~John Kauffman
(9c1cf2e) ~John Kauffman
More changes
(ee2c27d) ~John Kauffman
More updates
(31c695e) ~John Kauffman
Added dynamic group change
(96c2d05) ~John Kauffman
Update group column width
(0c94b1a) ~John Kauffman
Opencode added group breakdown
(1d3bde1) ~John Kauffman
Overlay fixes
(f86551a) ~John Kauffman

Bug Fixes 🐛


Fix notes
(f34ddee) ~John Kauffman
Fix notes
(7dccf42) ~John Kauffman

〰️Commits​


Squashed commit of the following:

commit commit # [44ea04e](https://github.com/kauffman12/EQLogParser/commit/44ea04ee900be5d95f20f5edde52cb35c8b379a1)
Author: John Kauffman <[email protected]>
Date: Wed Apr 29 18:38:16 2026 -0400

update to 2.3.51

commit commit # [fb469ab](https://github.com/kauffman12/EQLogParser/commit/fb469ab0d7b14951323f195e408533bee5e16b37)
Author: John Kauffman <[email protected]>
Date: Wed Apr 29 18:34:02 2026 -0400

added group view, best sec for tanking, and lots of re-org

commit commit # [2c84081](https://github.com/kauffman12/EQLogParser/commit/2c84081820c159efc8224e5faefd9fee8930abea)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 16:08:05 2026 -0400

Squashed commit of the following:

commit commit # [09cbb47](https://github.com/kauffman12/EQLogParser/commit/09cbb47e77745efc6ca8ca36e64cd94c1c7210cb)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 16:03:22 2026 -0400

remove id

commit commit # [5474050](https://github.com/kauffman12/EQLogParser/commit/5474050ca7b32310a26424bbce3a1d0e0a37cd29)
Merge: commit # [8f44970](https://github.com/kauffman12/EQLogParser/commit/8f449707) commit # [eb824dd](https://github.com/kauffman12/EQLogParser/commit/eb824dd7)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:56:18 2026 -0400

Merge branch 'master' into opencode2

commit commit # [8f44970](https://github.com/kauffman12/EQLogParser/commit/8f449707f85e959c6c630db422e70036ae20d000)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:52:48 2026 -0400

fix warnings

commit commit # [df8bc21](https://github.com/kauffman12/EQLogParser/commit/df8bc2184573a8b0d3e7c9de2ca4968b751c70b2)
Merge: commit # [45fe494](https://github.com/kauffman12/EQLogParser/commit/45fe4940) commit # [3d3a09a](https://github.com/kauffman12/EQLogParser/commit/3d3a09ad)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:24:43 2026 -0400

Merge branch 'develop' into opencode2

commit commit # [45fe494](https://github.com/kauffman12/EQLogParser/commit/45fe4940e5dd19e720b33bf1902f6e04a447a723)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:11:29 2026 -0400

big reorg

commit commit # [ec71d06](https://github.com/kauffman12/EQLogParser/commit/ec71d060a3b39542384c98d197a558f65d64ffbb)
Merge: commit # [3d3a09a](https://github.com/kauffman12/EQLogParser/commit/3d3a09ad) commit # [eb824dd](https://github.com/kauffman12/EQLogParser/commit/eb824dd7)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 15:56:34 2026 -0400

Merge branch 'master' into develop

commit commit # [3d3a09a](https://github.com/kauffman12/EQLogParser/commit/3d3a09ade3e36360801db974436f5f02788a723f)
Merge: commit # [6cbb5ce](https://github.com/kauffman12/EQLogParser/commit/6cbb5ce4) commit # [f71bc4b](https://github.com/kauffman12/EQLogParser/commit/f71bc4b6)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 14:47:11 2026 -0400

Merge branch 'opencode' into develop

commit commit # [f71bc4b](https://github.com/kauffman12/EQLogParser/commit/f71bc4b6792471704101f34f517a544e4c770d10)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 14:44:25 2026 -0400

fix bug

commit commit # [d71f4d7](https://github.com/kauffman12/EQLogParser/commit/d71f4d78c35ac71a7acd437e18c83f48d19b874c)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 12:41:09 2026 -0400

fixes

commit commit # [29c7057](https://github.com/kauffman12/EQLogParser/commit/29c705747eff2859760f2912db7e8dce08ae606f)
Author: John Kauffman <[email protected]>
Date: Thu Apr 23 10:58:05 2026 -0400

util cleanup

commit commit # [66c193c](https://github.com/kauffman12/EQLogParser/commit/66c193cb69644f54ed6b18b9b2fbcf63ae582a7b)
Author: John Kauffman <[email protected]>
Date: Tue Apr 21 16:57:01 2026 -0400

updated standards

commit commit # [e79e6e5](https://github.com/kauffman12/EQLogParser/commit/e79e6e55acc25fcb4d859a0b2c134fc774dcaca5)
Author: John Kauffman <[email protected]>
Date: Tue Apr 21 16:00:07 2026 -0400

cleanup

commit commit # [4423448](https://github.com/kauffman12/EQLogParser/commit/44234483978ae6f8c5b36e7a30d29c3d1478f901)
Author: John Kauffman <[email protected]>
Date: Tue Apr 21 15:54:25 2026 -0400

fixes

commit commit # [4743204](https://github.com/kauffman12/EQLogParser/commit/474320475c411bb6e25ec958352157f399bd06a2)
Author: John Kauffman <[email protected]>
Date: Tue Apr 21 14:20:30 2026 -0400

reorg

commit commit # [c4ab881](https://github.com/kauffman12/EQLogParser/commit/c4ab88116153c3da10ec8ca9c1fd92b0de2993d9)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 19:04:02 2026 -0400

more cleanup

commit commit # [e90bfcb](https://github.com/kauffman12/EQLogParser/commit/e90bfcb2554f00ad7a81bb1c131b7b1527759086)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 18:56:56 2026 -0400

update ignore file

commit commit # [d6305d5](https://github.com/kauffman12/EQLogParser/commit/d6305d57f7d720304e6b477c8877b5997cb2fc5b)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 18:55:27 2026 -0400

fix app cs

commit commit # [a3428f4](https://github.com/kauffman12/EQLogParser/commit/a3428f4d943692b8771173b0cf58375de3603500)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 18:53:51 2026 -0400

removed invalid file

commit commit # [86300a9](https://github.com/kauffman12/EQLogParser/commit/86300a9903e66e479f07bfbf40678fed9f8061ba)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 18:51:17 2026 -0400

cleanup

commit commit # [d54f0a9](https://github.com/kauffman12/EQLogParser/commit/d54f0a90c9f9b5ccc836000779a1b6bee7d20715)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 18:32:27 2026 -0400

renaming some classes

commit commit # [6b5f609](https://github.com/kauffman12/EQLogParser/commit/6b5f60970d112b6a9553b6c9b2d99412d89c1843)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 17:23:51 2026 -0400

format fixes

commit commit # [2bb372e](https://github.com/kauffman12/EQLogParser/commit/2bb372e123e87f6a4f4e7d523c50871d457c2995)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 16:58:23 2026 -0400

created adps tracker

commit commit # [353b3e3](https://github.com/kauffman12/EQLogParser/commit/353b3e358400372d44b1c2d0d7327c21f5a02c6c)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 14:24:49 2026 -0400

fix formatting

commit commit # [bb76181](https://github.com/kauffman12/EQLogParser/commit/bb76181b1dd9781c6cfcba00d791baebd93c9fa3)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 14:08:04 2026 -0400

refactor managers

commit commit # [6cbb5ce](https://github.com/kauffman12/EQLogParser/commit/6cbb5ce4d933392b80da8f66446ab6faaa8bd4e1)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 14:06:13 2026 -0400

Squashed commit of the following:

commit commit # [96b3d4f](https://github.com/kauffman12/EQLogParser/commit/96b3d4fb1f0de6ea4157b120335e5666f0a23905)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 09:44:46 2026 -0400

handle group id in who

commit commit # [bace40c](https://github.com/kauffman12/EQLogParser/commit/bace40c4c80f307d8244bcf6d64622e0d75d820e)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:24:20 2026 -0400

fix formatting

commit commit # [83e5ae0](https://github.com/kauffman12/EQLogParser/commit/83e5ae0dde41e5688c5ff1593debc3568ebe4395)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:21:19 2026 -0400

better interface use

commit commit # [033d2fd](https://github.com/kauffman12/EQLogParser/commit/033d2fd86a05f4ea81c0265493d5609d6d8e2a83)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:08:06 2026 -0400

fix tests

commit commit # [22162de](https://github.com/kauffman12/EQLogParser/commit/22162de776e035196655cf6d8b8e5ef72cb2117d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 14:09:24 2026 -0400

update testers

commit commit # [c6a141f](https://github.com/kauffman12/EQLogParser/commit/c6a141f866c36b8f6a558477cdd294f4d30b854a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 12:22:31 2026 -0400

new tests

commit commit # [c914c48](https://github.com/kauffman12/EQLogParser/commit/c914c4875069441e56eeff82230d9383c46f32ad)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:38:02 2026 -0400

more performance updates

commit commit # [0499dff](https://github.com/kauffman12/EQLogParser/commit/0499dff928ddad82921fae56986b07f52903b39c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:36:07 2026 -0400

minor updates

commit commit # [4006744](https://github.com/kauffman12/EQLogParser/commit/40067447415a4d783786ec967f234f8300ef669a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:29:00 2026 -0400

fix compiler warnings

commit commit # [7eb4e96](https://github.com/kauffman12/EQLogParser/commit/7eb4e96b4a4af45d37d9711fcb0583dce7f48e09)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:10:57 2026 -0400

removed extra ToArray()

commit commit # [50e5b79](https://github.com/kauffman12/EQLogParser/commit/50e5b79b3ee479c1b4082be51bf2b2c0e68c4ded)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:51:38 2026 -0400

fix tests

commit commit # [77c3554](https://github.com/kauffman12/EQLogParser/commit/77c35544eeef341689928e92117e5080dab00449)
Merge: commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e) commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:10:43 2026 -0400

Merge remote-tracking branch 'refs/remotes/origin/opencode' into opencode

commit commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e7d1629fdc4e374e0ae8779ca913b8a2c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:09:27 2026 -0400

perf updates

commit commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921f84b73f097396cd8dffba824fc21778c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 03:22:47 2026 -0400

fix events not being cleaned up

commit commit # [4a00575](https://github.com/kauffman12/EQLogParser/commit/4a00575c84cec7be32339bd3b1807820976f1f02)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 02:08:35 2026 -0400

cleanup

commit commit # [32784fe](https://github.com/kauffman12/EQLogParser/commit/32784fe81b1a886b4da65e6ac3eb67ee76466440)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:46:26 2026 -0400

updated standards

commit commit # [d0c68e7](https://github.com/kauffman12/EQLogParser/commit/d0c68e7e6ea827c33017631bfa9861cec168e648)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:21:04 2026 -0400

latest

commit commit # [075b180](https://github.com/kauffman12/EQLogParser/commit/075b180ff03d19f5b4a7fd06e064d63bec5dce8d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 00:18:08 2026 -0400

updated damage summary combo

commit commit # [f4d39e5](https://github.com/kauffman12/EQLogParser/commit/f4d39e5e2f0ce9c1b3c80ec485fe6edd0fb9ccb1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 23:45:30 2026 -0400

more fixes

commit commit # [023fb9e](https://github.com/kauffman12/EQLogParser/commit/023fb9e8699370b38aee2d48d3bc1f01d13e6109)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:42 2026 -0400

Revert "Revert "group cleanup""

This reverts commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1).

commit commit # [b2babad](https://github.com/kauffman12/EQLogParser/commit/b2babadb947279ddd9cd00aee9bde9e6d79ee587)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:14 2026 -0400

Revert "test groupid sort"

This reverts commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7).

commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:25:06 2026 -0400

Revert "group cleanup"

This reverts commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b).

commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:20:18 2026 -0400

test groupid sort

commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:03:07 2026 -0400

group cleanup

commit commit # [91fcc36](https://github.com/kauffman12/EQLogParser/commit/91fcc3693566104a67b5293c1801a43424f8941d)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:47:49 2026 -0400

cleanup

commit commit # [fbaf1af](https://github.com/kauffman12/EQLogParser/commit/fbaf1af1d76c24bf17d64f98fb042859dd462dc3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:14:10 2026 -0400

fix clipboard calls

commit commit # [2e78a78](https://github.com/kauffman12/EQLogParser/commit/2e78a780e1ffd9184381d5caf2af1245aac011f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:03:16 2026 -0400

cleanup

commit commit # [fc15365](https://github.com/kauffman12/EQLogParser/commit/fc15365f2d2e125de241454be7d89a122b00d230)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:38:38 2026 -0400

fixes

commit commit # [8e6dc1d](https://github.com/kauffman12/EQLogParser/commit/8e6dc1d0a85545c83497b8f48a2377ddafdf95e6)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:18:53 2026 -0400

fixes for spell counts hopefully

commit commit # [5cb4155](https://github.com/kauffman12/EQLogParser/commit/5cb41554be363a7780ae3eddc4f1704d2bdd6866)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:25:55 2026 -0400

minor updates

commit commit # [52065e7](https://github.com/kauffman12/EQLogParser/commit/52065e705abdcf8c95fa85f1cf99e3009f7d72f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:19:24 2026 -0400

updated delete in pet table

commit commit # [e2c1734](https://github.com/kauffman12/EQLogParser/commit/e2c173433f989c89cd2230da10ab96ab3f52acc1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:52:30 2026 -0400

format updates

commit commit # [a90c13d](https://github.com/kauffman12/EQLogParser/commit/a90c13dafdc171b63b7d44f527bbfb73322a1909)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:44:28 2026 -0400

latest

commit commit # [95e6bd0](https://github.com/kauffman12/EQLogParser/commit/95e6bd027fc24eb952c9a2d66d6ec6ae606d2f24)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:20:44 2026 -0400

fixes

commit commit # [1b21fc4](https://github.com/kauffman12/EQLogParser/commit/1b21fc4967c3886bde99b5a37e968717257d2c7e)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:55:07 2026 -0400

update for class picker

commit commit # [6e83187](https://github.com/kauffman12/EQLogParser/commit/6e83187ad15773b2c78f6015bb6ec37ff3e748ac)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:21:18 2026 -0400

updates for pet player dropdown

commit commit # [a09067a](https://github.com/kauffman12/EQLogParser/commit/a09067a1b8113d5d29c01ce2eb8966055f6133ef)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 11:53:50 2026 -0400

single combobox idea

commit commit # [8d186f7](https://github.com/kauffman12/EQLogParser/commit/8d186f7d8a81e6c8e648e832b0096db71a2e2f7f)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:34:01 2026 -0400

updated player column

commit commit # [aa8c737](https://github.com/kauffman12/EQLogParser/commit/aa8c737f326678a9890a22c8b6d301c68103f406)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:06:40 2026 -0400

latest

commit commit # [a565fe7](https://github.com/kauffman12/EQLogParser/commit/a565fe78c06256c4ec9b13933ccaad8d873daf23)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:57:14 2026 -0400

more changes

commit commit # [ff97383](https://github.com/kauffman12/EQLogParser/commit/ff97383a9127e32f306d786728a09c83e812b4df)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:26:18 2026 -0400

more

commit commit # [ca0e078](https://github.com/kauffman12/EQLogParser/commit/ca0e0780b016b87e6838a14bab61237b64ea022d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 19:33:48 2026 -0400

another mouse update

commit commit # [d26e2b9](https://github.com/kauffman12/EQLogParser/commit/d26e2b96218bf459b88e03526abeb19638b76d2a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 18:03:03 2026 -0400

mouse click test

commit commit # [af91378](https://github.com/kauffman12/EQLogParser/commit/af913786d64a09f38d18aca6edcaf321b3c4c061)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 17:39:16 2026 -0400

fixes

commit commit # [c60bc04](https://github.com/kauffman12/EQLogParser/commit/c60bc045cc43067c4be261ccf5f2670d814fdb0d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 16:41:31 2026 -0400

updated pet mapping table

commit commit # [fcf9d40](https://github.com/kauffman12/EQLogParser/commit/fcf9d404da2f53d06542bca884c1f01f70520047)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:38:45 2026 -0400

added modified get selected stats

commit commit # [17337d9](https://github.com/kauffman12/EQLogParser/commit/17337d926ae67ac88785fb369697a081c2d29e65)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:13:03 2026 -0400

fix context menu

commit commit # [0657e3e](https://github.com/kauffman12/EQLogParser/commit/0657e3e8ceee95390999af436d3bc3cb8a29e918)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:53:51 2026 -0400

cleanup

commit commit # [f738a04](https://github.com/kauffman12/EQLogParser/commit/f738a0402e358507705f6f28b8885ea7e85f689a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:39:21 2026 -0400

fix raid total percent for groups

commit commit # [0d5fe2f](https://github.com/kauffman12/EQLogParser/commit/0d5fe2f2d39843eea7a6685ecd1aaa14a1a9405c)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:25:41 2026 -0400

changed to IList

commit commit # [ce0022a](https://github.com/kauffman12/EQLogParser/commit/ce0022a65df58236dc151cf95384633a98560fe9)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:02:14 2026 -0400

cleanup

commit commit # [cc6be5e](https://github.com/kauffman12/EQLogParser/commit/cc6be5e9100511f54e92bfadde896c5f3cad4ea5)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:56:52 2026 -0400

cleanup

commit commit # [209632e](https://github.com/kauffman12/EQLogParser/commit/209632e3c8f9bd2202d81fe0d42b6bfc1a1fd184)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:53:09 2026 -0400

added icons and updated combobox UI

commit commit # [31097d1](https://github.com/kauffman12/EQLogParser/commit/31097d19314336ddbce7a2097dcc0cbd6e5ef788)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 00:05:50 2026 -0400

Revert "use syncfusion dropdown"

This reverts commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9).

commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 21:17:10 2026 -0400

use syncfusion dropdown

commit commit # [c8ed458](https://github.com/kauffman12/EQLogParser/commit/c8ed458e57cd7b95ac9271babaee46227ae3f02b)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 18:26:17 2026 -0400

more updates

commit commit # [235f2ca](https://github.com/kauffman12/EQLogParser/commit/235f2ca8890f9435626b0355e31249243083b2f0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 16:22:53 2026 -0400

fix expanding

commit commit # [9c1cf2e](https://github.com/kauffman12/EQLogParser/commit/9c1cf2ede6560210ec665c734205b80d66847db5)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 14:07:21 2026 -0400

new idea

commit commit # [ee2c27d](https://github.com/kauffman12/EQLogParser/commit/ee2c27d24db42ebd621325dd231507f914d60537)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 11:44:33 2026 -0400

more changes

commit commit # [7b08e5d](https://github.com/kauffman12/EQLogParser/commit/7b08e5d64c5a91ac10f56d8411fcc2df6df593a0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 10:33:10 2026 -0400

fixes

commit commit # [31c695e](https://github.com/kauffman12/EQLogParser/commit/31c695e96b966bb97472917b534cc40df7754f8e)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 00:43:43 2026 -0400

more updates

commit commit # [f5ba754](https://github.com/kauffman12/EQLogParser/commit/f5ba754eaa49f11adbf7ed2509bc2928f2696a84)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:53:06 2026 -0400

fixes

commit commit # [96c2d05](https://github.com/kauffman12/EQLogParser/commit/96c2d05d34ed0ae723f6ca710d196c06fc327054)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:16:59 2026 -0400

added dynamic group change

commit commit # [0c94b1a](https://github.com/kauffman12/EQLogParser/commit/0c94b1af3112a460446db8fad5fd8c5f623a8ef9)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:22:35 2026 -0400

update group column width

commit commit # [323b1ae](https://github.com/kauffman12/EQLogParser/commit/323b1ae3ca2673872f11ca73600b892550bfcd21)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:09:03 2026 -0400

fixes

commit commit # [1d3bde1](https://github.com/kauffman12/EQLogParser/commit/1d3bde1a6c9d7971176fcb75afe77f8e70b688cb)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 01:40:23 2026 -0400

opencode added group breakdown

commit commit # [f86551a](https://github.com/kauffman12/EQLogParser/commit/f86551a1c3a704e78bcd0047e063c3e9e9613c68)
Author: John Kauffman <[email protected]>
Date: Tue Apr 14 18:55:04 2026 -0400

overlay fixes

commit commit # [96b3d4f](https://github.com/kauffman12/EQLogParser/commit/96b3d4fb1f0de6ea4157b120335e5666f0a23905)
Author: John Kauffman <[email protected]>
Date: Mon Apr 20 09:44:46 2026 -0400

handle group id in who

commit commit # [bace40c](https://github.com/kauffman12/EQLogParser/commit/bace40c4c80f307d8244bcf6d64622e0d75d820e)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:24:20 2026 -0400

fix formatting

commit commit # [83e5ae0](https://github.com/kauffman12/EQLogParser/commit/83e5ae0dde41e5688c5ff1593debc3568ebe4395)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:21:19 2026 -0400

better interface use

commit commit # [033d2fd](https://github.com/kauffman12/EQLogParser/commit/033d2fd86a05f4ea81c0265493d5609d6d8e2a83)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 23:08:06 2026 -0400

fix tests

commit commit # [22162de](https://github.com/kauffman12/EQLogParser/commit/22162de776e035196655cf6d8b8e5ef72cb2117d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 14:09:24 2026 -0400

update testers

commit commit # [c6a141f](https://github.com/kauffman12/EQLogParser/commit/c6a141f866c36b8f6a558477cdd294f4d30b854a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 12:22:31 2026 -0400

new tests

commit commit # [c914c48](https://github.com/kauffman12/EQLogParser/commit/c914c4875069441e56eeff82230d9383c46f32ad)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:38:02 2026 -0400

more performance updates

commit commit # [0499dff](https://github.com/kauffman12/EQLogParser/commit/0499dff928ddad82921fae56986b07f52903b39c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:36:07 2026 -0400

minor updates

commit commit # [4006744](https://github.com/kauffman12/EQLogParser/commit/40067447415a4d783786ec967f234f8300ef669a)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:29:00 2026 -0400

fix compiler warnings

commit commit # [7eb4e96](https://github.com/kauffman12/EQLogParser/commit/7eb4e96b4a4af45d37d9711fcb0583dce7f48e09)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 11:10:57 2026 -0400

removed extra ToArray()

commit commit # [50e5b79](https://github.com/kauffman12/EQLogParser/commit/50e5b79b3ee479c1b4082be51bf2b2c0e68c4ded)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:51:38 2026 -0400

fix tests

commit commit # [77c3554](https://github.com/kauffman12/EQLogParser/commit/77c35544eeef341689928e92117e5080dab00449)
Merge: commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e) commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:10:43 2026 -0400

Merge remote-tracking branch 'refs/remotes/origin/opencode' into opencode

commit commit # [dfa3194](https://github.com/kauffman12/EQLogParser/commit/dfa3194e7d1629fdc4e374e0ae8779ca913b8a2c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 10:09:27 2026 -0400

perf updates

commit commit # [c8d8d92](https://github.com/kauffman12/EQLogParser/commit/c8d8d921f84b73f097396cd8dffba824fc21778c)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 03:22:47 2026 -0400

fix events not being cleaned up

commit commit # [4a00575](https://github.com/kauffman12/EQLogParser/commit/4a00575c84cec7be32339bd3b1807820976f1f02)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 02:08:35 2026 -0400

cleanup

commit commit # [32784fe](https://github.com/kauffman12/EQLogParser/commit/32784fe81b1a886b4da65e6ac3eb67ee76466440)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:46:26 2026 -0400

updated standards

commit commit # [d0c68e7](https://github.com/kauffman12/EQLogParser/commit/d0c68e7e6ea827c33017631bfa9861cec168e648)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 01:21:04 2026 -0400

latest

commit commit # [075b180](https://github.com/kauffman12/EQLogParser/commit/075b180ff03d19f5b4a7fd06e064d63bec5dce8d)
Author: John Kauffman <[email protected]>
Date: Sun Apr 19 00:18:08 2026 -0400

updated damage summary combo

commit commit # [f4d39e5](https://github.com/kauffman12/EQLogParser/commit/f4d39e5e2f0ce9c1b3c80ec485fe6edd0fb9ccb1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 23:45:30 2026 -0400

more fixes

commit commit # [023fb9e](https://github.com/kauffman12/EQLogParser/commit/023fb9e8699370b38aee2d48d3bc1f01d13e6109)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:42 2026 -0400

Revert "Revert "group cleanup""

This reverts commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1).

commit commit # [b2babad](https://github.com/kauffman12/EQLogParser/commit/b2babadb947279ddd9cd00aee9bde9e6d79ee587)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:40:14 2026 -0400

Revert "test groupid sort"

This reverts commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7).

commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:25:06 2026 -0400

Revert "group cleanup"

This reverts commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b).

commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:20:18 2026 -0400

test groupid sort

commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 22:03:07 2026 -0400

group cleanup

commit commit # [91fcc36](https://github.com/kauffman12/EQLogParser/commit/91fcc3693566104a67b5293c1801a43424f8941d)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:47:49 2026 -0400

cleanup

commit commit # [fbaf1af](https://github.com/kauffman12/EQLogParser/commit/fbaf1af1d76c24bf17d64f98fb042859dd462dc3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:14:10 2026 -0400

fix clipboard calls

commit commit # [2e78a78](https://github.com/kauffman12/EQLogParser/commit/2e78a780e1ffd9184381d5caf2af1245aac011f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 21:03:16 2026 -0400

cleanup

commit commit # [fc15365](https://github.com/kauffman12/EQLogParser/commit/fc15365f2d2e125de241454be7d89a122b00d230)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:38:38 2026 -0400

fixes

commit commit # [8e6dc1d](https://github.com/kauffman12/EQLogParser/commit/8e6dc1d0a85545c83497b8f48a2377ddafdf95e6)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 16:18:53 2026 -0400

fixes for spell counts hopefully

commit commit # [5cb4155](https://github.com/kauffman12/EQLogParser/commit/5cb41554be363a7780ae3eddc4f1704d2bdd6866)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:25:55 2026 -0400

minor updates

commit commit # [52065e7](https://github.com/kauffman12/EQLogParser/commit/52065e705abdcf8c95fa85f1cf99e3009f7d72f3)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 15:19:24 2026 -0400

updated delete in pet table

commit commit # [e2c1734](https://github.com/kauffman12/EQLogParser/commit/e2c173433f989c89cd2230da10ab96ab3f52acc1)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:52:30 2026 -0400

format updates

commit commit # [a90c13d](https://github.com/kauffman12/EQLogParser/commit/a90c13dafdc171b63b7d44f527bbfb73322a1909)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:44:28 2026 -0400

latest

commit commit # [95e6bd0](https://github.com/kauffman12/EQLogParser/commit/95e6bd027fc24eb952c9a2d66d6ec6ae606d2f24)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 14:20:44 2026 -0400

fixes

commit commit # [1b21fc4](https://github.com/kauffman12/EQLogParser/commit/1b21fc4967c3886bde99b5a37e968717257d2c7e)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:55:07 2026 -0400

update for class picker

commit commit # [6e83187](https://github.com/kauffman12/EQLogParser/commit/6e83187ad15773b2c78f6015bb6ec37ff3e748ac)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 13:21:18 2026 -0400

updates for pet player dropdown

commit commit # [a09067a](https://github.com/kauffman12/EQLogParser/commit/a09067a1b8113d5d29c01ce2eb8966055f6133ef)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 11:53:50 2026 -0400

single combobox idea

commit commit # [8d186f7](https://github.com/kauffman12/EQLogParser/commit/8d186f7d8a81e6c8e648e832b0096db71a2e2f7f)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:34:01 2026 -0400

updated player column

commit commit # [aa8c737](https://github.com/kauffman12/EQLogParser/commit/aa8c737f326678a9890a22c8b6d301c68103f406)
Author: John Kauffman <[email protected]>
Date: Sat Apr 18 00:06:40 2026 -0400

latest

commit commit # [a565fe7](https://github.com/kauffman12/EQLogParser/commit/a565fe78c06256c4ec9b13933ccaad8d873daf23)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:57:14 2026 -0400

more changes

commit commit # [ff97383](https://github.com/kauffman12/EQLogParser/commit/ff97383a9127e32f306d786728a09c83e812b4df)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 20:26:18 2026 -0400

more

commit commit # [ca0e078](https://github.com/kauffman12/EQLogParser/commit/ca0e0780b016b87e6838a14bab61237b64ea022d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 19:33:48 2026 -0400

another mouse update

commit commit # [d26e2b9](https://github.com/kauffman12/EQLogParser/commit/d26e2b96218bf459b88e03526abeb19638b76d2a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 18:03:03 2026 -0400

mouse click test

commit commit # [af91378](https://github.com/kauffman12/EQLogParser/commit/af913786d64a09f38d18aca6edcaf321b3c4c061)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 17:39:16 2026 -0400

fixes

commit commit # [c60bc04](https://github.com/kauffman12/EQLogParser/commit/c60bc045cc43067c4be261ccf5f2670d814fdb0d)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 16:41:31 2026 -0400

updated pet mapping table

commit commit # [fcf9d40](https://github.com/kauffman12/EQLogParser/commit/fcf9d404da2f53d06542bca884c1f01f70520047)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:38:45 2026 -0400

added modified get selected stats

commit commit # [17337d9](https://github.com/kauffman12/EQLogParser/commit/17337d926ae67ac88785fb369697a081c2d29e65)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 15:13:03 2026 -0400

fix context menu

commit commit # [0657e3e](https://github.com/kauffman12/EQLogParser/commit/0657e3e8ceee95390999af436d3bc3cb8a29e918)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:53:51 2026 -0400

cleanup

commit commit # [f738a04](https://github.com/kauffman12/EQLogParser/commit/f738a0402e358507705f6f28b8885ea7e85f689a)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:39:21 2026 -0400

fix raid total percent for groups

commit commit # [0d5fe2f](https://github.com/kauffman12/EQLogParser/commit/0d5fe2f2d39843eea7a6685ecd1aaa14a1a9405c)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:25:41 2026 -0400

changed to IList

commit commit # [ce0022a](https://github.com/kauffman12/EQLogParser/commit/ce0022a65df58236dc151cf95384633a98560fe9)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 14:02:14 2026 -0400

cleanup

commit commit # [cc6be5e](https://github.com/kauffman12/EQLogParser/commit/cc6be5e9100511f54e92bfadde896c5f3cad4ea5)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:56:52 2026 -0400

cleanup

commit commit # [209632e](https://github.com/kauffman12/EQLogParser/commit/209632e3c8f9bd2202d81fe0d42b6bfc1a1fd184)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 12:53:09 2026 -0400

added icons and updated combobox UI

commit commit # [31097d1](https://github.com/kauffman12/EQLogParser/commit/31097d19314336ddbce7a2097dcc0cbd6e5ef788)
Author: John Kauffman <[email protected]>
Date: Fri Apr 17 00:05:50 2026 -0400

Revert "use syncfusion dropdown"

This reverts commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9).

commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 21:17:10 2026 -0400

use syncfusion dropdown

commit commit # [c8ed458](https://github.com/kauffman12/EQLogParser/commit/c8ed458e57cd7b95ac9271babaee46227ae3f02b)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 18:26:17 2026 -0400

more updates

commit commit # [235f2ca](https://github.com/kauffman12/EQLogParser/commit/235f2ca8890f9435626b0355e31249243083b2f0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 16:22:53 2026 -0400

fix expanding

commit commit # [9c1cf2e](https://github.com/kauffman12/EQLogParser/commit/9c1cf2ede6560210ec665c734205b80d66847db5)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 14:07:21 2026 -0400

new idea

commit commit # [ee2c27d](https://github.com/kauffman12/EQLogParser/commit/ee2c27d24db42ebd621325dd231507f914d60537)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 11:44:33 2026 -0400

more changes

commit commit # [7b08e5d](https://github.com/kauffman12/EQLogParser/commit/7b08e5d64c5a91ac10f56d8411fcc2df6df593a0)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 10:33:10 2026 -0400

fixes

commit commit # [31c695e](https://github.com/kauffman12/EQLogParser/commit/31c695e96b966bb97472917b534cc40df7754f8e)
Author: John Kauffman <[email protected]>
Date: Thu Apr 16 00:43:43 2026 -0400

more updates

commit commit # [f5ba754](https://github.com/kauffman12/EQLogParser/commit/f5ba754eaa49f11adbf7ed2509bc2928f2696a84)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:53:06 2026 -0400

fixes

commit commit # [96c2d05](https://github.com/kauffman12/EQLogParser/commit/96c2d05d34ed0ae723f6ca710d196c06fc327054)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 23:16:59 2026 -0400

added dynamic group change

commit commit # [0c94b1a](https://github.com/kauffman12/EQLogParser/commit/0c94b1af3112a460446db8fad5fd8c5f623a8ef9)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:22:35 2026 -0400

update group column width

commit commit # [323b1ae](https://github.com/kauffman12/EQLogParser/commit/323b1ae3ca2673872f11ca73600b892550bfcd21)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 21:09:03 2026 -0400

fixes

commit commit # [1d3bde1](https://github.com/kauffman12/EQLogParser/commit/1d3bde1a6c9d7971176fcb75afe77f8e70b688cb)
Author: John Kauffman <[email protected]>
Date: Wed Apr 15 01:40:23 2026 -0400

opencode added group breakdown

commit commit # [f86551a](https://github.com/kauffman12/EQLogParser/commit/f86551a1c3a704e78bcd0047e063c3e9e9613c68)
Author: John Kauffman <[email protected]>
Date: Tue Apr 14 18:55:04 2026 -0400

overlay fixes
(073b9bc) ~John Kauffman
Merge branch 'develop'
(eb824dd) ~John Kauffman
Small doc update
(86d60bc) ~John Kauffman
Small doc updates
(7c661b1) ~John Kauffman

Bug Fixes 🐛


Fixed from gemma4
(6673749) ~John Kauffman
Fix formatting
(3ce85db) ~John Kauffman

Documentation 📕


Doc updates for 2.3.50
(7af28d6) ~John Kauffman

〰️Commits​


Release 2.3.50
(2c0142a) ~John Kauffman
Merge branch 'develop'
(7d3fcec) ~John Kauffman
Small changes to script
(adc48c5) ~John Kauffman
Put back lost tooltip template
(692583f) ~John Kauffman
(2bd970f) ~John Kauffman
Updated layout
(981133e) ~John Kauffman
Minor fixes
(ad154b2) ~John Kauffman
Removed delete button from combobox item and added dropdown button for managing layouts
(cde70b5) ~John Kauffman
Hide delete button for selected
(e730164) ~John Kauffman
Ui updates
(a068682) ~John Kauffman
More fixes
(a431546) ~John Kauffman
More fixes
(532235a) ~John Kauffman
Added saved layouts to the timeline
(b16d515) ~John Kauffman
Updated dependencies
(407779a) ~John Kauffman
More re-org of trigger properties
(47eadff) ~John Kauffman
Moved horizontal layout back to text overlay
(79c46ad) ~John Kauffman
Added tab for overlay properties
(c26d8b8) ~John Kauffman
Add custom idle and reset colors
(f7633fc) ~John Kauffman
Suppress warnings
(ad1301b) ~John Kauffman
Added 3rd end early pattern
(5a81815) ~John Kauffman
Simplify enable categories code
(24b2ee2) ~John Kauffman
(b99e57a) ~John Kauffman
Property tabs and auto update changes by opencode
(96b485d) ~John Kauffman
Temp adding binary back
(325cea6) ~John Kauffman
Updated linux docs


Former-commit-id: commit # [2f734fa](https://github.com/kauffman12/EQLogParser/commit/2f734fab1fcb31bc14d71595e05ae3a60f3c6ae3)
(805da98) ~John Kauffman
Removed release dir


Former-commit-id: commit # [2b9958b](https://github.com/kauffman12/EQLogParser/commit/2b9958ba9bba9c663c1aedd98af654be728db9b2)
(e6422b7) ~John Kauffman
Update to use new link


Former-commit-id: commit # [7f03ab7](https://github.com/kauffman12/EQLogParser/commit/7f03ab79f5dfabc9525f21e0e77d23adbe48429b)
(1e34973) ~John Kauffman
Updated installer link in readme


Former-commit-id: commit # [b1a86cd](https://github.com/kauffman12/EQLogParser/commit/b1a86cd8b5f5c59e9aedb061703c7710a3dacac0)
(59ff06b) ~John Kauffman
Added installer with pipertts


Former-commit-id: commit # [8042204](https://github.com/kauffman12/EQLogParser/commit/80422048b813898bdd840988059d27e71ece9119)
(9870b09) ~John Kauffman
Removing installers


Former-commit-id: commit # [9b10b22](https://github.com/kauffman12/EQLogParser/commit/9b10b224210c9e40403560c1cfe2a10bf7d666f3)
(50002bb) ~John Kauffman
Added gdi back as recommendation


Former-commit-id: commit # [26aa51c](https://github.com/kauffman12/EQLogParser/commit/26aa51c8728d323cdfc8afa196dd002bc17c567c)
(9da1c73) ~John Kauffman
Cleanup


Former-commit-id: commit # [4e25447](https://github.com/kauffman12/EQLogParser/commit/4e25447c21e20a3cd1a777b735bc373d82f76a3b)
(91e68b6) ~John Kauffman
Back
Top
Cart