diff --git a/src/Artemis.UI/App.xaml b/src/Artemis.UI/App.xaml index bcd49c34f..ae724e222 100644 --- a/src/Artemis.UI/App.xaml +++ b/src/Artemis.UI/App.xaml @@ -24,6 +24,9 @@ + + + diff --git a/src/Artemis.UI/Screens/Home/HomeView.xaml b/src/Artemis.UI/Screens/Home/HomeView.xaml index 71cd26300..23ffe9d24 100644 --- a/src/Artemis.UI/Screens/Home/HomeView.xaml +++ b/src/Artemis.UI/Screens/Home/HomeView.xaml @@ -70,9 +70,8 @@ - - + If you need help, have some feedback or have any other questions feel free to contact us through any of the + following channels. + CommandParameter="https://github.com/Artemis-RGB/Artemis"> GitHub @@ -94,11 +93,11 @@ - - - + + Feel like you want to make a donation? It would be gratefully received. Click the button to donate via PayPal. diff --git a/src/Artemis.UI/Screens/RootView.xaml b/src/Artemis.UI/Screens/RootView.xaml index 42594df85..b59cd308e 100644 --- a/src/Artemis.UI/Screens/RootView.xaml +++ b/src/Artemis.UI/Screens/RootView.xaml @@ -65,7 +65,13 @@ Title="{Binding ActiveItem.DisplayName}" ShowNavigationDrawerButton="True" DockPanel.Dock="Top"> - + + + diff --git a/src/Plugins/Artemis.Plugins.Modules.Overlay/OverlayModule.cs b/src/Plugins/Artemis.Plugins.Modules.Overlay/OverlayModule.cs index 15902d85b..a338d68d0 100644 --- a/src/Plugins/Artemis.Plugins.Modules.Overlay/OverlayModule.cs +++ b/src/Plugins/Artemis.Plugins.Modules.Overlay/OverlayModule.cs @@ -1,6 +1,4 @@ -using System; -using System.IO; -using Artemis.Core; +using Artemis.Core; using Artemis.Core.Modules; using SkiaSharp; @@ -15,20 +13,6 @@ namespace Artemis.Plugins.Modules.Overlay DisplayName = "Overlay"; DisplayIcon = "ArrangeBringToFront"; DefaultPriorityCategory = ModulePriorityCategory.Overlay; - UpdateDuringActivationOverride = false; - - ActivationRequirements.Add(new ProcessActivationRequirement("taskmgr")); - ActivationRequirements.Add(new ProcessActivationRequirement("calc")); - ActivationRequirements.Add(new ProcessActivationRequirement("mspaint") - { - Location = Path.Combine(Directory.GetParent(Environment.GetFolderPath(Environment.SpecialFolder.System)).FullName, "System32") - }); - - AddTimedUpdate(TimeSpan.FromSeconds(5), DelayedUpdate); - } - - private void DelayedUpdate(double obj) - { } // This is the end of your plugin life cycle.