internal static void ReceivedVersionCheck()
 {
     if (AppListener != null)
     {
         AppListener.Output("Version check received");
     }
 }
 internal static void ReceivedKey(Command value, bool quickCommand)
 {
     if (AppListener != null)
     {
         AppListener.KeystrokeReceived(value.ActivatorType, value.Key, value.Modifier, quickCommand);
     }
 }