Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Bug Fixes
(88f9ca1) ~John KauffmanFix tests
(cbd56ed) ~John KauffmanFix multiple phrase trigger
(a64b5e7) ~John KauffmanFix import multiple phrases
- Phrase-specific clear-variable (actionType 7) creates VariableAction
(735842c) ~John KauffmanNAG 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.
- Skip blank template actions with missing actionType
(80670fd) ~John KauffmanNAG 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.
(305f0ab) ~John KauffmanFix variable format tests
(ad914e5) ~John KauffmanFix 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.
(4c16c94) ~John KauffmanFix 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.
(c35d4ff) ~John KauffmanFix 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.
(456f9cb) ~John KauffmanFix 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.
(5fd7e9b) ~John KauffmanFix 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)
(74495bb) ~John KauffmanFix 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).
(4778814) ~John KauffmanFix 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.
(9c8668c) ~John KauffmanFix 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.
(5bbcb01) ~John KauffmanFix import boolean NAG
(1a766f2) ~John KauffmanFix for correcting missing path
(d06c203) ~John KauffmanFix to avoid opening file chooser when selecting file programatically
Documentation
(0b47b5d) ~John KauffmanDoc updates
(32976fc) ~John KauffmanDoc updates
(02e9027) ~John KauffmanDoc updates
Testing
(c440e78) ~John KauffmanTest updates
(f8924a4) ~John KauffmanTest fixes
(c12d4d8) ~John KauffmanTest updates
Commits
(8188587) ~John KauffmanLatest
(28c9550) ~John KauffmanNag fixes
(44b1b45) ~John KauffmanNag improvements
(5ad4a8f) ~John KauffmanUpdated migrate nag database menu
(c2e39dc) ~John KauffmanMore updates to triggers with multiple capture phrases
(66af5be) ~John KauffmanCode cleanup
(bbdaf7f) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(a31d7e7) ~John KauffmanMore test updates
(e02ee6c) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(2e37f87) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(d3061b3) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(9beb805) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(0ebd0e3) ~John KauffmanMoved import NAG DB feature
(2a4eaf4) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(4a3b4e3) ~John KauffmanAdded fallback for phrase actions
(685f960) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(6594de1) ~John KauffmanCleanup
(e7de56c) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(ec41d64) ~John KauffmanImplent nag conunters
(47ff80a) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(952d75e) ~John KauffmanAdded unit tests for import from nag
(1e6e7d3) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(b433d95) ~John KauffmanAdd 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.
(55be2bf) ~John KauffmanInclude 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'.
(ddbf4e7) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(4074ce3) ~John KauffmanMap 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
(9114585) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(712682f) ~John KauffmanMark 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.
(514ffe7) ~John KauffmanSimplify 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:'
(264ffaa) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(0b14879) ~John KauffmanCleanup 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.
(2b23de7) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(dc6807a) ~John KauffmanCleanup 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.
(04e70d7) ~John KauffmanMap 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'.
(5b4d39e) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(ed2e479) ~John KauffmanShorten 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.'
(df75bd9) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(56f6b39) ~John KauffmanSimplify NAG import progress dialog text
(f682441) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(b93a52d) ~John KauffmanDark 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
(56c18cd) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(14d96e5) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(cda38fd) ~John KauffmanStore 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
(3af0dc3) ~John KauffmanRemove 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.
(8eaa9b6) ~John KauffmanUpdate 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>
(a39e8a5) ~John KauffmanAdd 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.
(823d38c) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(85be2a4) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(d2c76fe) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(e885ed8) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(a63cce8) ~John KauffmanChanged import item
(72f9940) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(5f9f08f) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(f6f3678) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(868cff0) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(409f91b) ~John KauffmanMerge branch 'master' into develop
(46b8f52) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(3e7798f) ~John KauffmanUpdated custom audio selection
(b5e47f0) ~John KauffmanMerge branch 'develop' of https://github.com/kauffman12/EQLogParser into develop
(9b91446) ~John KauffmanCode cleanup
(eaf3e65) ~John KauffmanHandle custom audio files
(87ccb1d) ~John KauffmanImport nag v1
Bug Fixes
(8d56774) ~John KauffmanFix style issues and improved locking
(1ae4d79) ~John KauffmanFix trigger tester
(1cc590a) ~John KauffmanFix tests
(c3497dd) ~John KauffmanFix typo
(3da4357) ~John KauffmanFix resource leak and added tests
(d221dc0) ~John KauffmanFix for end clear variable not saving
(09c7846) ~John KauffmanFix description for end clear variables
(4e013d4) ~John KauffmanFix formatting
(7f01478) ~John KauffmanFix variable TTS related to timeout
(8f0cf23) ~John KauffmanFix variable expiration
(1ad5552) ~John KauffmanFix loading variable settings
(a59c0a0) ~John KauffmanFixed matches variable validator
(256bc20) ~John KauffmanFix for text value being cut short
(dc200b3) ~John KauffmanFix event handling and more UI updates
Performance
(1bc54e2) ~John KauffmanPerformance cleanup
(4f94b98) ~John KauffmanPerformance updates for variables
Styling
(8c04b58) ~John KauffmanStyle cleanup
Commits
(d2ecd7a) ~John Kauffman2.3.57
(f04f901) ~John KauffmanAdded trigger variables
(4560fe1) ~John KauffmanReview fixes
(feee4b3) ~John KauffmanUpdated dialog and docs
(a53d887) ~John KauffmanCleanup
(552de1f) ~John KauffmanBug fixes
(7785320) ~John KauffmanAdded progress dialog for import
(427692f) ~John KauffmanCleanup
(4a1a023) ~John KauffmanAdded variable clear when timer ends
(d191895) ~John KauffmanAdded command to clear variables
(b803939) ~John KauffmanChanged to Fixed
(82e7080) ~John KauffmanRenamed Value option
(3e24ce3) ~John KauffmanChanged internal types to number
(91190be) ~John KauffmanRenamed Text to Value
(47c0aa9) ~John KauffmanUpdated docs
(5cd4213) ~John KauffmanMade variable condition validation smarter
(22798ba) ~John KauffmanAdd validation for match variables field
(154d3d4) ~John KauffmanCleanup
(3503187) ~John KauffmanAdded trigger variables
(42c4cf8) ~John KauffmanUpdated tab names and fixes
(5954d52) ~John KauffmanAdded TTL to variables and updated style
(da52c33) ~John KauffmanUI cleanup and model updates
(65ca6c4) ~John KauffmanUI update for variables tab on trigger properties
Bug Fixes
(c219c16) ~John KauffmanFix tests
Commits
(0227f3c) ~John KauffmanV2.3.55
(fda2354) ~John KauffmanExpand all levels
(16e0d8c) ~John KauffmanHandle days when displaying timer
(ed30a2d) ~John KauffmanMerge branch 'master' into picode
(2f4391e) ~kauffman12PR # [392](https://github.com/kauffman12/EQLogParser/pull/392): text/timer overlay backgrounds rendering black on Wayland/Wine
(6936d5b) ~John KauffmanExtend {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.
(9051155) ~John KauffmanMerge branch 'master' into picode
(c4fa0b1) ~John KauffmanConsolidated safe file write
(8fec127) ~stvsuFix 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.
(035bfa1) ~kauffman12PR # [389](https://github.com/kauffman12/EQLogParser/pull/389): Add support for 'cleave' 'reave' and 'smite' for DPS parser
- Add support for 'cleave' 'reave' and 'smite' for DPS parser
(bbcf45f) ~Cord B
(f9f6c51) ~John KauffmanRemoved unused interface
(a7122a4) ~John KauffmanUpdated install files list
(fc1751b) ~John KauffmanUpdate tests
(08dbdd8) ~John KauffmanPut iaction back
(1e0390f) ~John KauffmanUpdated tests
(4554849) ~John KauffmanLoad real spell data for tests
(5a2dca7) ~John KauffmanDamage and healing validator tests
(d108ea6) ~John KauffmanAdded tests and moved util classes to their own project
(1909420) ~John KauffmanChanged order or shutdown APIs
(08774fd) ~John KauffmanUpdated to use pattern matching
Bug Fixes
(cb31b97) ~John KauffmanFix deadlock
(535a007) ~John KauffmanFix priority for theme updates
(1d0f89a) ~John KauffmanFix default log list
(1dc161b) ~John KauffmanFix event cleanup
(b5c8b43) ~John KauffmanFix bugs
(1883dc4) ~John KauffmanFixes
(50c4738) ~John KauffmanFixes
(93bb67d) ~John KauffmanFix timer lock
(53ef049) ~John KauffmanFix bottles index
Commits
(6733be3) ~John KauffmanUpdate 2.3.54
(1dcee80) ~John KauffmanUpdated libraries
(cd78607) ~John KauffmanImprove handling of trigger log lists
(747c459) ~John KauffmanCleanup
(29a0ab6) ~John KauffmanClear logs from one spot
(0d23d52) ~John KauffmanUpdate timer usage
(e0bf067) ~John KauffmanChanged timer back to throttle/one shot
(32fb07d) ~John KauffmanRestrict possibly player name to not be unknown
(ba5aa23) ~John KauffmanCleanup timer lock
(e9bfee0) ~John KauffmanAdd verified player option
(f0e8e30) ~John KauffmanRenamed theme manager
(279a700) ~John KauffmanBreakup main actions
(9e158e5) ~John KauffmanBreakup main actions
(e549636) ~John KauffmanRemove cleanup of quickshares
(c53ac20) ~John KauffmanAdd trigger log manager to reduce ui dependence
(0a16ae2) ~John KauffmanUpdate for config util status
(184a9a3) ~John KauffmanRemove UI dependence
(de376b8) ~John KauffmanAdded a quick search manager
(9ee5af7) ~John Kauffman2.3.53 update
(30ac2e2) ~John KauffmanUpdate bottles info again
(b26e591) ~John KauffmanMerged v2.3.53
Bug Fixes
(18e247c) ~John KauffmanFix possibly cut/paste error and fixed player names from healing spells. added paddingleft, right, center to format options in triggers
(f71bc4b) ~John KauffmanFix bug
(d71f4d7) ~John KauffmanFixes
(4423448) ~John KauffmanFixes
(d6305d5) ~John KauffmanFix app cs
(353b3e3) ~John KauffmanFix formatting
(bace40c) ~John KauffmanFix formatting
(033d2fd) ~John KauffmanFix tests
(4006744) ~John KauffmanFix compiler warnings
(50e5b79) ~John KauffmanFix tests
(c8d8d92) ~John KauffmanFix events not being cleaned up
(fbaf1af) ~John KauffmanFix clipboard calls
(fc15365) ~John KauffmanFixes
(8e6dc1d) ~John KauffmanFixes for spell counts hopefully
(95e6bd0) ~John KauffmanFixes
(af91378) ~John KauffmanFixes
(17337d9) ~John KauffmanFix context menu
(f738a04) ~John KauffmanFix raid total percent for groups
(235f2ca) ~John KauffmanFix expanding
(7b08e5d) ~John KauffmanFixes
(f5ba754) ~John KauffmanFixes
(323b1ae) ~John KauffmanFixes
Performance
(dfa3194) ~John KauffmanPerf updates
Refactor
(bb76181) ~John KauffmanRefactor managers
Testing
(145e8a2) ~John KauffmanTest groupid sort
Commits
(c6408ae) ~John KauffmanUpdate docs for padleft/padright
(24f65b2) ~John KauffmanMerge branch 'develop'
(c574a9d) ~John KauffmanRemove generated files
(d5911f3) ~John KauffmanV2.3.52
(7691cf3) ~John KauffmanAdded chat db cleanup
(c1e2d39) ~John KauffmanRemove Linq from hotpaths
(44ea04e) ~John KauffmanUpdate to 2.3.51
(fb469ab) ~John KauffmanAdded group view, best sec for tanking, and lots of re-org
(2c84081) ~John KauffmanSquashed 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
(ec71d06) ~John KauffmanMerge branch 'master' into develop
(3d3a09a) ~John KauffmanMerge branch 'opencode' into develop
(29c7057) ~John KauffmanUtil cleanup
(66c193c) ~John KauffmanUpdated standards
(e79e6e5) ~John KauffmanCleanup
(4743204) ~John KauffmanReorg
(c4ab881) ~John KauffmanMore cleanup
(e90bfcb) ~John KauffmanUpdate ignore file
(a3428f4) ~John KauffmanRemoved invalid file
(86300a9) ~John KauffmanCleanup
(d54f0a9) ~John KauffmanRenaming some classes
(6b5f609) ~John KauffmanFormat fixes
(2bb372e) ~John KauffmanCreated adps tracker
(6cbb5ce) ~John KauffmanSquashed 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
(96b3d4f) ~John KauffmanHandle group id in who
(83e5ae0) ~John KauffmanBetter interface use
(22162de) ~John KauffmanUpdate testers
(c6a141f) ~John KauffmanNew tests
(c914c48) ~John KauffmanMore performance updates
(0499dff) ~John KauffmanMinor updates
(7eb4e96) ~John KauffmanRemoved extra ToArray()
(77c3554) ~John KauffmanMerge remote-tracking branch 'refs/remotes/origin/opencode' into opencode
(4a00575) ~John KauffmanCleanup
(32784fe) ~John KauffmanUpdated standards
(d0c68e7) ~John KauffmanLatest
(075b180) ~John KauffmanUpdated damage summary combo
(f4d39e5) ~John KauffmanMore fixes
(023fb9e) ~John KauffmanRevert "Revert "group cleanup""
This reverts commit commit # [72ce4f1](https://github.com/kauffman12/EQLogParser/commit/72ce4f12911abd5c10b1fc862789123816e0ccf1).
(b2babad) ~John KauffmanRevert "test groupid sort"
This reverts commit commit # [145e8a2](https://github.com/kauffman12/EQLogParser/commit/145e8a21d2a539a80a39d1374d8cfd76c6c6ccd7).
(72ce4f1) ~John KauffmanRevert "group cleanup"
This reverts commit commit # [599f20f](https://github.com/kauffman12/EQLogParser/commit/599f20f066f559d41e53b8f7278ad0d243c13c7b).
(599f20f) ~John KauffmanGroup cleanup
(91fcc36) ~John KauffmanCleanup
(2e78a78) ~John KauffmanCleanup
(5cb4155) ~John KauffmanMinor updates
(52065e7) ~John KauffmanUpdated delete in pet table
(e2c1734) ~John KauffmanFormat updates
(a90c13d) ~John KauffmanLatest
(1b21fc4) ~John KauffmanUpdate for class picker
(6e83187) ~John KauffmanUpdates for pet player dropdown
(a09067a) ~John KauffmanSingle combobox idea
(8d186f7) ~John KauffmanUpdated player column
(aa8c737) ~John KauffmanLatest
(a565fe7) ~John KauffmanMore changes
(ff97383) ~John KauffmanMore
(ca0e078) ~John KauffmanAnother mouse update
(d26e2b9) ~John KauffmanMouse click test
(c60bc04) ~John KauffmanUpdated pet mapping table
(fcf9d40) ~John KauffmanAdded modified get selected stats
(0657e3e) ~John KauffmanCleanup
(0d5fe2f) ~John KauffmanChanged to IList
(ce0022a) ~John KauffmanCleanup
(cc6be5e) ~John KauffmanCleanup
(209632e) ~John KauffmanAdded icons and updated combobox UI
(31097d1) ~John KauffmanRevert "use syncfusion dropdown"
This reverts commit commit # [4a5a2cc](https://github.com/kauffman12/EQLogParser/commit/4a5a2cc536382e9ac9e967507d85178f70db28b9).
(4a5a2cc) ~John KauffmanUse syncfusion dropdown
(c8ed458) ~John KauffmanMore updates
(9c1cf2e) ~John KauffmanNew idea
(ee2c27d) ~John KauffmanMore changes
(31c695e) ~John KauffmanMore updates
(96c2d05) ~John KauffmanAdded dynamic group change
(0c94b1a) ~John KauffmanUpdate group column width
(1d3bde1) ~John KauffmanOpencode added group breakdown
(f86551a) ~John KauffmanOverlay fixes
Commits
(073b9bc) ~John KauffmanSquashed 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
(eb824dd) ~John KauffmanMerge branch 'develop'
(86d60bc) ~John KauffmanSmall doc update
(7c661b1) ~John KauffmanSmall doc updates
Bug Fixes
(6673749) ~John KauffmanFixed from gemma4
(3ce85db) ~John KauffmanFix formatting
Documentation
(7af28d6) ~John KauffmanDoc updates for 2.3.50
Commits
(2c0142a) ~John KauffmanRelease 2.3.50
(7d3fcec) ~John KauffmanMerge branch 'develop'
(adc48c5) ~John KauffmanSmall changes to script
(692583f) ~John KauffmanPut back lost tooltip template
(2bd970f) ~John KauffmanCleanup
(981133e) ~John KauffmanUpdated layout
(ad154b2) ~John KauffmanMinor fixes
(cde70b5) ~John KauffmanRemoved delete button from combobox item and added dropdown button for managing layouts
(e730164) ~John KauffmanHide delete button for selected
(a068682) ~John KauffmanUi updates
(a431546) ~John KauffmanMore fixes
(532235a) ~John KauffmanMore fixes
(b16d515) ~John KauffmanAdded saved layouts to the timeline
(407779a) ~John KauffmanUpdated dependencies
(47eadff) ~John KauffmanMore re-org of trigger properties
(79c46ad) ~John KauffmanMoved horizontal layout back to text overlay
(c26d8b8) ~John KauffmanAdded tab for overlay properties
(f7633fc) ~John KauffmanAdd custom idle and reset colors
(ad1301b) ~John KauffmanSuppress warnings
(5a81815) ~John KauffmanAdded 3rd end early pattern
(24b2ee2) ~John KauffmanSimplify enable categories code
(b99e57a) ~John KauffmanCleanup
(96b485d) ~John KauffmanProperty tabs and auto update changes by opencode
(325cea6) ~John KauffmanTemp adding binary back
(805da98) ~John KauffmanUpdated linux docs
Former-commit-id: commit # [2f734fa](https://github.com/kauffman12/EQLogParser/commit/2f734fab1fcb31bc14d71595e05ae3a60f3c6ae3)
(e6422b7) ~John KauffmanRemoved release dir
Former-commit-id: commit # [2b9958b](https://github.com/kauffman12/EQLogParser/commit/2b9958ba9bba9c663c1aedd98af654be728db9b2)
(1e34973) ~John KauffmanUpdate to use new link
Former-commit-id: commit # [7f03ab7](https://github.com/kauffman12/EQLogParser/commit/7f03ab79f5dfabc9525f21e0e77d23adbe48429b)
(59ff06b) ~John KauffmanUpdated installer link in readme
Former-commit-id: commit # [b1a86cd](https://github.com/kauffman12/EQLogParser/commit/b1a86cd8b5f5c59e9aedb061703c7710a3dacac0)
(9870b09) ~John KauffmanAdded installer with pipertts
Former-commit-id: commit # [8042204](https://github.com/kauffman12/EQLogParser/commit/80422048b813898bdd840988059d27e71ece9119)
(50002bb) ~John KauffmanRemoving installers
Former-commit-id: commit # [9b10b22](https://github.com/kauffman12/EQLogParser/commit/9b10b224210c9e40403560c1cfe2a10bf7d666f3)
(9da1c73) ~John KauffmanAdded gdi back as recommendation
Former-commit-id: commit # [26aa51c](https://github.com/kauffman12/EQLogParser/commit/26aa51c8728d323cdfc8afa196dd002bc17c567c)
(91e68b6) ~John KauffmanCleanup
Former-commit-id: commit # [4e25447](https://github.com/kauffman12/EQLogParser/commit/4e25447c21e20a3cd1a777b735bc373d82f76a3b)