Added Support for Debug Logging
Updated a couple of variables for better memory use. Added Support for ignoring specific streamers Moved to using a SingletonFactory for Singlton Classes No Longer Using MessageBox for disconnected message Added better detection for disconnected to stop it poping with other problems Added Window and menu option to open window to manage ignored streamers
This commit is contained in:
11
TwitchDesktopNotifications/JsonStructure/SteamersToIgnore.cs
Normal file
11
TwitchDesktopNotifications/JsonStructure/SteamersToIgnore.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using TwitchDesktopNotifications.Core;
|
||||
|
||||
namespace TwitchDesktopNotifications.JsonStructure
|
||||
{
|
||||
public class SteamersToIgnore
|
||||
{
|
||||
[JsonPropertyName("IgnoredStreamers")]
|
||||
public List<UIStreamer> Streamers { get; set; } = new List<UIStreamer>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user