refactor: Remove Leading Mention in Replies and Highlight Participated Threads (#4047)

This commit is contained in:
nerix
2022-10-08 16:25:32 +02:00
committed by GitHub
parent 29272e130a
commit 4e2da540d2
19 changed files with 286 additions and 20 deletions
+14
View File
@@ -118,6 +118,7 @@ public:
// BoolSetting collapseLongMessages =
// {"/appearance/messages/collapseLongMessages", false};
BoolSetting showReplyButton = {"/appearance/showReplyButton", false};
BoolSetting stripReplyMention = {"/appearance/stripReplyMention", true};
IntSetting collpseMessagesMinLines = {
"/appearance/messages/collapseMessagesMinLines", 0};
BoolSetting alternateMessages = {
@@ -327,6 +328,19 @@ public:
""};
QStringSetting subHighlightColor = {"/highlighting/subHighlightColor", ""};
BoolSetting enableThreadHighlight = {
"/highlighting/thread/nameIsHighlightKeyword", true};
BoolSetting showThreadHighlightInMentions = {
"/highlighting/thread/showSelfHighlightInMentions", true};
BoolSetting enableThreadHighlightSound = {
"/highlighting/thread/enableSound", true};
BoolSetting enableThreadHighlightTaskbar = {
"/highlighting/thread/enableTaskbarFlashing", true};
QStringSetting threadHighlightSoundUrl = {
"/highlighting/threadHighlightSoundUrl", ""};
QStringSetting threadHighlightColor = {"/highlighting/threadHighlightColor",
""};
QStringSetting highlightColor = {"/highlighting/color", ""};
BoolSetting longAlerts = {"/highlighting/alerts", false};