From d07bf9338125e0acb01d67a251b41dea090bc595 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 16 Sep 2024 15:54:48 -0700 Subject: initial implementation of configuration window --- DiscordToXIV/Configuration.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'DiscordToXIV/Configuration.cs') diff --git a/DiscordToXIV/Configuration.cs b/DiscordToXIV/Configuration.cs index b4b763b..8a1e369 100644 --- a/DiscordToXIV/Configuration.cs +++ b/DiscordToXIV/Configuration.cs @@ -11,6 +11,12 @@ public class Configuration : IPluginConfiguration public int Version { get; set; } = 0; public Dictionary ChannelMappings { get; set; } = new Dictionary(); public bool HideUsernameWhenNicknameExists { get; set; } = false; + public bool ShowOnlyKnownChannels { get; set; } = false; + public bool AdjustEmoteText { get; set; } = true; + public bool AdjustMentions { get; set; } = true; + public bool HideWelcomeMessage { get; set; } = false; + public bool HideAttachmentUrls { get; set; } = false; + public bool HideStickerUrls { get; set; } = false; public void Save() { -- cgit v1.2.3