From ed3a2bb5b95acf081739ff6d3c9b3b346e24a86c Mon Sep 17 00:00:00 2001 From: "Martin Barker (Keatran)" Date: Mon, 30 Jan 2023 14:48:28 +0000 Subject: [PATCH 1/3] Update Readme.md --- Readme.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Readme.md b/Readme.md index e0366d5..b3e05db 100644 --- a/Readme.md +++ b/Readme.md @@ -1,9 +1,21 @@ # Twitch Notify ## Not affiliated with Twitch or Amazon +Please note that currently this is a BETA as such it does not add it's self to windows start up if you wish to add this to start up for now you can just create a shortcut to the `Twitch Notify.exe` in the directory `C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup`, + +This will be fixed when this project moves out of Beta only. + ## Installation Twitch Notify Requires [.NET 6 Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-desktop-6.0.13-windows-x64-installer). +## How to use +**How to Exit:** +To exit you will have a Notification Icon / Tray icon where you can quit the application. + +![Showing windows Notification Icon Area also known as the Tray Area](https://user-images.githubusercontent.com/37368/215226270-52d596d5-7811-4389-a761-3aabad7da360.png) + +**What it looks like:** +![Example of the Notification ](https://user-images.githubusercontent.com/37368/215226419-0ec644f1-bd2b-498f-93ed-a48acd3c824c.png) ## Development -- 2.49.1 From ab758cd85fbba2c2a872772967960fd197e9e11f Mon Sep 17 00:00:00 2001 From: "Martin Barker (Keatran)" Date: Mon, 30 Jan 2023 14:49:18 +0000 Subject: [PATCH 2/3] Update Readme.md --- Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index b3e05db..1884023 100644 --- a/Readme.md +++ b/Readme.md @@ -10,12 +10,14 @@ This will be fixed when this project moves out of Beta only. ## How to use **How to Exit:** + To exit you will have a Notification Icon / Tray icon where you can quit the application. ![Showing windows Notification Icon Area also known as the Tray Area](https://user-images.githubusercontent.com/37368/215226270-52d596d5-7811-4389-a761-3aabad7da360.png) **What it looks like:** -![Example of the Notification ](https://user-images.githubusercontent.com/37368/215226419-0ec644f1-bd2b-498f-93ed-a48acd3c824c.png) + +![Example of the Notification](https://user-images.githubusercontent.com/37368/215226419-0ec644f1-bd2b-498f-93ed-a48acd3c824c.png) ## Development -- 2.49.1 From 45d4dad22a12cb3607f0311cdb1cdc89dbed7694 Mon Sep 17 00:00:00 2001 From: Martin Barker Date: Tue, 21 Feb 2023 22:34:56 +0000 Subject: [PATCH 3/3] Updated Ignore form to be a little cleaner, and hyperlinks now work. --- .../Core/TwitchFetcher.cs | 1 + TwitchDesktopNotifications/ManageIgnores.xaml | 36 +++++++++---------- .../ManageIgnores.xaml.cs | 23 +++++++++--- 3 files changed, 38 insertions(+), 22 deletions(-) diff --git a/TwitchDesktopNotifications/Core/TwitchFetcher.cs b/TwitchDesktopNotifications/Core/TwitchFetcher.cs index 797e67b..8ef9649 100644 --- a/TwitchDesktopNotifications/Core/TwitchFetcher.cs +++ b/TwitchDesktopNotifications/Core/TwitchFetcher.cs @@ -165,6 +165,7 @@ namespace TwitchDesktopNotifications.Core if (!found) { UserData streamer = FetchUserData(x.UserId); + UIStreamer.GetCreateStreamer(x.DisplayName); Notification.GetInstance().sendNotification(streamer.DisplayName, "https://twitch.tv/" + streamer.UserName, streamer.ProfileImage, x.ThumbnailImg, x.Title); } }); diff --git a/TwitchDesktopNotifications/ManageIgnores.xaml b/TwitchDesktopNotifications/ManageIgnores.xaml index 534669f..2ec22d2 100644 --- a/TwitchDesktopNotifications/ManageIgnores.xaml +++ b/TwitchDesktopNotifications/ManageIgnores.xaml @@ -6,45 +6,45 @@ xmlns:local="clr-namespace:TwitchDesktopNotifications" xmlns:core="clr-namespace:TwitchDesktopNotifications.Core" mc:Ignorable="d" - Title="Manage Ignored Streamers" Height="435" Width="395" ResizeMode="NoResize"> + Title="Manage Ignored Streamers" Height="435" Width="395" ResizeMode="CanResizeWithGrip"> - - - + - + + CanUserResizeColumns="False" + x:Name="dgrdIgnore" ItemsSource="{Binding StreamersToIgnore}" SelectionChanged="dgrdIgnore_SelectionChanged" AutoGenerateColumns="False" CanUserAddRows="False"> - - - - - - + + + + + + + -