Updates to finally secure the Twitch codes so i don't have to keep adding them for compile and removing them for Source Distribution. fixed a Bug in the notification system that ment dismiss did not work.

This commit is contained in:
Martin Barker
2023-01-28 15:17:50 +00:00
parent 77cae0c9c8
commit e9f291f6f7
5 changed files with 31 additions and 20 deletions

View File

@@ -11,10 +11,17 @@ Want to contribute? Great!
Project is built using Visual Studios 2022,
You need to create Application to obtain a ID and Secret on [Twitch Developer Console](https://dev.twitch.tv/console) replace lines 15 and 16 in TwitchFetcher.cs
```pwsh
TwitchClientID = "";
TwitchClientSecret = "";
You need to create Application to obtain a ID and Secret on [Twitch Developer Console](https://dev.twitch.tv/console)
Add a new C# Class to the project named `TwitchDetails.cs` add the following code with your ID and Secret
```cs
namespace TwitchDesktopNotifications
{
static public class TwitchDetails
{
public static string TwitchClientID = "";
public static string TwitchClientSecret = "";
}
}
```
### CommunityToolkit 8.0.0 Pre-release