-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added support for duplicate/implicit affixes.
- Added setting to adjust tooltip width for different resolutions. - Added logging view. - Only allow one tooltip at a time. - Merged normal and lite mode in one image set. - Fixed issues with affix filter by removing all underscores '_' from affix image names.
- Loading branch information
1 parent
4c6b073
commit 85e998f
Showing
247 changed files
with
1,007 additions
and
871 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Prism.Events; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace D4Companion.Events | ||
{ | ||
public class ErrorOccurredEvent : PubSubEvent<ErrorOccurredEventParams> | ||
{ | ||
} | ||
|
||
public class ErrorOccurredEventParams | ||
{ | ||
public string Message { get; set; } = string.Empty; | ||
} | ||
|
||
public class ExceptionOccurredEvent : PubSubEvent<ExceptionOccurredEventParams> | ||
{ | ||
} | ||
|
||
public class ExceptionOccurredEventParams | ||
{ | ||
public string Message { get; set; } = string.Empty; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.