Merge pull request #150

* Hash message links so messages with different links aren't considered…

* Add option to toggle if links should be considered for the message ha…
This commit is contained in:
Simon Schürrle
2025-06-22 20:17:19 +02:00
committed by GitHub
parent 34c4d87a33
commit 0d075ca060
6 changed files with 51 additions and 4 deletions
+2
View File
@@ -73,6 +73,7 @@ internal class Configuration : IPluginConfiguration
public bool FilterIncludePreviousSessions;
public bool SortAutoTranslate;
public bool CollapseDuplicateMessages;
public bool CollapseKeepUniqueLinks;
public bool PlaySounds = true;
public bool KeepInputFocus = true;
public int MaxLinesToRender = 10_000; // 1-10000
@@ -163,6 +164,7 @@ internal class Configuration : IPluginConfiguration
FilterIncludePreviousSessions = other.FilterIncludePreviousSessions;
SortAutoTranslate = other.SortAutoTranslate;
CollapseDuplicateMessages = other.CollapseDuplicateMessages;
CollapseKeepUniqueLinks = other.CollapseKeepUniqueLinks;
PlaySounds = other.PlaySounds;
KeepInputFocus = other.KeepInputFocus;
MaxLinesToRender = other.MaxLinesToRender;