├── .editorconfig ├── .github └── workflows │ └── github-action.yaml ├── .gitignore ├── AUTHORS.md ├── App.config ├── CHANGELOG.md ├── CodeMaid.config ├── Config ├── GroundStationConfig.cs ├── GroundStationConfigDataTemplate.xaml └── GroundStationConfigDataTemplate.xaml.cs ├── Converters ├── EmptyStringToFontStyleItalic.cs ├── EmptyStringToNoContent.cs ├── EmptyStringToNoDescription.cs └── HttpMethodEnumPostToVisibilityCollapsed.cs ├── DiscordWebhook ├── DiscordWebhookCommon.cs ├── DiscordWebhookEvents.cs ├── FailuresToDiscordWebhookTrigger.cs ├── FailuresToDiscordWebhookTriggerTemplate.xaml ├── FailuresToDiscordWebhookTriggerTemplate.xaml.cs ├── SendToDiscordWebhook.cs ├── SendToDiscordWebhookSetupView.xaml ├── SendToDiscordWebhookSetupView.xaml.cs ├── SendToDiscordWebhookTemplate.xaml └── SendToDiscordWebhookTemplate.xaml.cs ├── Email ├── EmailCommon.cs ├── FailuresToEmailTrigger.cs ├── FailuresToEmailTriggerTemplate.xaml ├── FailuresToEmailTriggerTemplate.xaml.cs ├── SendEmailSetupView.xaml ├── SendEmailSetupView.xaml.cs ├── SendToEmail.cs ├── SendToEmailTemplate.xaml └── SendToEmailTemplate.xaml.cs ├── Ground Station.csproj ├── Ground Station.sln ├── GroundStation.cs ├── HTTP ├── HttpClient.cs ├── HttpClientSetupView.xaml ├── HttpClientSetupView.xaml.cs ├── HttpClientTemplate.xaml └── HttpClientTemplate.xaml.cs ├── IFTTT ├── FailuresToIftttTrigger.cs ├── FailuresToIftttTriggerTemplate.xaml ├── FailuresToIftttTriggerTemplate.xaml.cs ├── IftttCommon.cs ├── SendToIftttWebhook.cs ├── SendToIftttWebhookSetupView.xaml ├── SendToIftttWebhookSetupView.xaml.cs ├── SendToIftttWebhookTemplate.xaml └── SendToIftttWebhookTemplate.xaml.cs ├── Images ├── ImageData.cs ├── ImageEventHandler.cs ├── ImageFormatEnum.cs ├── ImageService.cs └── ImageTypesEnum.cs ├── Interfaces └── IGroundStationOptions.cs ├── IpProtocols ├── IpCommon.cs ├── SendUdp.cs ├── SendUdpSetupView.xaml ├── SendUdpSetupView.xaml.cs ├── SendUdpTemplate.xaml └── SendUdpTemplate.xaml.cs ├── LICENSE.txt ├── MQTT ├── FailuresToMqttTrigger.cs ├── FailuresToMqttTriggerTemplate.xaml ├── FailuresToMqttTriggerTemplate.xaml.cs ├── LastWillAndTestament.cs ├── MqttClient.cs ├── MqttCommon.cs ├── MqttEvents.cs ├── SendToMqtt.cs ├── SendToMqttSetupView.xaml ├── SendToMqttSetupView.xaml.cs ├── SendToMqttTemplate.xaml └── SendToMqttTemplate.xaml.cs ├── MetadataClient ├── IMetadata.cs └── Metadata.cs ├── NtfySh ├── FailuresToNtfySh.cs ├── NtfySh.cs ├── NtfyShPriorityLevels.cs ├── SendToNtfySh.cs ├── SendToNtfyShSetupView.xaml ├── SendToNtfyShSetupView.xaml.cs ├── SendToNtfyShTemplate.xaml └── SendToNtfyShTemplate.xaml.cs ├── Options.xaml ├── Options.xaml.cs ├── PlaySound ├── PlaySound.cs ├── PlaySoundCommon.cs ├── PlaySoundOnFailureTrigger.cs ├── PlaySoundOnFailureTriggerTemplate.xaml ├── PlaySoundOnFailureTriggerTemplate.xaml.cs ├── PlaySoundTemplate.xaml └── PlaySoundTemplate.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Settings.Designer.cs ├── Settings.settings └── launchSettings.json ├── Pushover ├── FailuresToPushoverTrigger.cs ├── FailuresToPushoverTriggerTemplate.xaml ├── FailuresToPushoverTriggerTemplate.xaml.cs ├── SendToPushover.cs ├── SendToPushoverSetupView.xaml ├── SendToPushoverSetupView.xaml.cs ├── SendToPushoverTemplate.xaml └── SendToPushoverTemplate.xaml.cs ├── PushoverClient ├── NotificationSound.cs ├── Priority.cs └── PushoverClient.cs ├── README.md ├── Resources ├── Converters.xaml └── Icons.xaml ├── Slack ├── Channel.cs ├── FailuresToSlackTrigger.cs ├── FailuresToSlackTriggerTemplate.xaml ├── FailuresToSlackTriggerTemplate.xaml.cs ├── SendToSlack.cs ├── SendToSlackSetupView.xaml ├── SendToSlackSetupView.xaml.cs ├── SendToSlackTemplate.xaml ├── SendToSlackTemplate.xaml.cs ├── SlackClient.cs ├── SlackEvents.cs └── SlackImage.cs ├── TTS ├── FailuresToTTS.cs ├── FailuresToTTSTemplate.xaml ├── FailuresToTTSTemplate.xaml.cs ├── SendToTTS.cs ├── SendToTTSTemplate.xaml ├── SendToTTSTemplate.xaml.cs ├── SpeechApiReflectionHelper.cs └── TextToSpeech.cs ├── Telegram ├── FailuresToTelegramTrigger.cs ├── FailuresToTelegramTriggerTemplate.xaml ├── FailuresToTelegramTriggerTemplate.xaml.cs ├── SendToTelegram.cs ├── SendToTelegramSetupView.xaml ├── SendToTelegramSetupView.xaml.cs ├── SendToTelegramTemplate.xaml ├── SendToTelegramTemplate.xaml.cs └── TelegramCommon.cs ├── Utilities ├── BackgroundQueueWorker.cs ├── EnumBindingSourceExtension.cs ├── FailedItem.cs ├── HttpUtils.cs ├── Security.cs ├── SelectTextOnFocus.cs └── Utilities.cs └── plugin.licenseheader /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/github-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/.github/workflows/github-action.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/App.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CodeMaid.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/CodeMaid.config -------------------------------------------------------------------------------- /Config/GroundStationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Config/GroundStationConfig.cs -------------------------------------------------------------------------------- /Config/GroundStationConfigDataTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Config/GroundStationConfigDataTemplate.xaml -------------------------------------------------------------------------------- /Config/GroundStationConfigDataTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Config/GroundStationConfigDataTemplate.xaml.cs -------------------------------------------------------------------------------- /Converters/EmptyStringToFontStyleItalic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Converters/EmptyStringToFontStyleItalic.cs -------------------------------------------------------------------------------- /Converters/EmptyStringToNoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Converters/EmptyStringToNoContent.cs -------------------------------------------------------------------------------- /Converters/EmptyStringToNoDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Converters/EmptyStringToNoDescription.cs -------------------------------------------------------------------------------- /Converters/HttpMethodEnumPostToVisibilityCollapsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Converters/HttpMethodEnumPostToVisibilityCollapsed.cs -------------------------------------------------------------------------------- /DiscordWebhook/DiscordWebhookCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/DiscordWebhookCommon.cs -------------------------------------------------------------------------------- /DiscordWebhook/DiscordWebhookEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/DiscordWebhookEvents.cs -------------------------------------------------------------------------------- /DiscordWebhook/FailuresToDiscordWebhookTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/FailuresToDiscordWebhookTrigger.cs -------------------------------------------------------------------------------- /DiscordWebhook/FailuresToDiscordWebhookTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/FailuresToDiscordWebhookTriggerTemplate.xaml -------------------------------------------------------------------------------- /DiscordWebhook/FailuresToDiscordWebhookTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/FailuresToDiscordWebhookTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /DiscordWebhook/SendToDiscordWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/SendToDiscordWebhook.cs -------------------------------------------------------------------------------- /DiscordWebhook/SendToDiscordWebhookSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/SendToDiscordWebhookSetupView.xaml -------------------------------------------------------------------------------- /DiscordWebhook/SendToDiscordWebhookSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/SendToDiscordWebhookSetupView.xaml.cs -------------------------------------------------------------------------------- /DiscordWebhook/SendToDiscordWebhookTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/SendToDiscordWebhookTemplate.xaml -------------------------------------------------------------------------------- /DiscordWebhook/SendToDiscordWebhookTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/DiscordWebhook/SendToDiscordWebhookTemplate.xaml.cs -------------------------------------------------------------------------------- /Email/EmailCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/EmailCommon.cs -------------------------------------------------------------------------------- /Email/FailuresToEmailTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/FailuresToEmailTrigger.cs -------------------------------------------------------------------------------- /Email/FailuresToEmailTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/FailuresToEmailTriggerTemplate.xaml -------------------------------------------------------------------------------- /Email/FailuresToEmailTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/FailuresToEmailTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /Email/SendEmailSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/SendEmailSetupView.xaml -------------------------------------------------------------------------------- /Email/SendEmailSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/SendEmailSetupView.xaml.cs -------------------------------------------------------------------------------- /Email/SendToEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/SendToEmail.cs -------------------------------------------------------------------------------- /Email/SendToEmailTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/SendToEmailTemplate.xaml -------------------------------------------------------------------------------- /Email/SendToEmailTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Email/SendToEmailTemplate.xaml.cs -------------------------------------------------------------------------------- /Ground Station.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Ground Station.csproj -------------------------------------------------------------------------------- /Ground Station.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Ground Station.sln -------------------------------------------------------------------------------- /GroundStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/GroundStation.cs -------------------------------------------------------------------------------- /HTTP/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/HTTP/HttpClient.cs -------------------------------------------------------------------------------- /HTTP/HttpClientSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/HTTP/HttpClientSetupView.xaml -------------------------------------------------------------------------------- /HTTP/HttpClientSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/HTTP/HttpClientSetupView.xaml.cs -------------------------------------------------------------------------------- /HTTP/HttpClientTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/HTTP/HttpClientTemplate.xaml -------------------------------------------------------------------------------- /HTTP/HttpClientTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/HTTP/HttpClientTemplate.xaml.cs -------------------------------------------------------------------------------- /IFTTT/FailuresToIftttTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/FailuresToIftttTrigger.cs -------------------------------------------------------------------------------- /IFTTT/FailuresToIftttTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/FailuresToIftttTriggerTemplate.xaml -------------------------------------------------------------------------------- /IFTTT/FailuresToIftttTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/FailuresToIftttTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /IFTTT/IftttCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/IftttCommon.cs -------------------------------------------------------------------------------- /IFTTT/SendToIftttWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/SendToIftttWebhook.cs -------------------------------------------------------------------------------- /IFTTT/SendToIftttWebhookSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/SendToIftttWebhookSetupView.xaml -------------------------------------------------------------------------------- /IFTTT/SendToIftttWebhookSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/SendToIftttWebhookSetupView.xaml.cs -------------------------------------------------------------------------------- /IFTTT/SendToIftttWebhookTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/SendToIftttWebhookTemplate.xaml -------------------------------------------------------------------------------- /IFTTT/SendToIftttWebhookTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IFTTT/SendToIftttWebhookTemplate.xaml.cs -------------------------------------------------------------------------------- /Images/ImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Images/ImageData.cs -------------------------------------------------------------------------------- /Images/ImageEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Images/ImageEventHandler.cs -------------------------------------------------------------------------------- /Images/ImageFormatEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Images/ImageFormatEnum.cs -------------------------------------------------------------------------------- /Images/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Images/ImageService.cs -------------------------------------------------------------------------------- /Images/ImageTypesEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Images/ImageTypesEnum.cs -------------------------------------------------------------------------------- /Interfaces/IGroundStationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Interfaces/IGroundStationOptions.cs -------------------------------------------------------------------------------- /IpProtocols/IpCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/IpCommon.cs -------------------------------------------------------------------------------- /IpProtocols/SendUdp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/SendUdp.cs -------------------------------------------------------------------------------- /IpProtocols/SendUdpSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/SendUdpSetupView.xaml -------------------------------------------------------------------------------- /IpProtocols/SendUdpSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/SendUdpSetupView.xaml.cs -------------------------------------------------------------------------------- /IpProtocols/SendUdpTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/SendUdpTemplate.xaml -------------------------------------------------------------------------------- /IpProtocols/SendUdpTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/IpProtocols/SendUdpTemplate.xaml.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MQTT/FailuresToMqttTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/FailuresToMqttTrigger.cs -------------------------------------------------------------------------------- /MQTT/FailuresToMqttTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/FailuresToMqttTriggerTemplate.xaml -------------------------------------------------------------------------------- /MQTT/FailuresToMqttTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/FailuresToMqttTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /MQTT/LastWillAndTestament.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/LastWillAndTestament.cs -------------------------------------------------------------------------------- /MQTT/MqttClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/MqttClient.cs -------------------------------------------------------------------------------- /MQTT/MqttCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/MqttCommon.cs -------------------------------------------------------------------------------- /MQTT/MqttEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/MqttEvents.cs -------------------------------------------------------------------------------- /MQTT/SendToMqtt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/SendToMqtt.cs -------------------------------------------------------------------------------- /MQTT/SendToMqttSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/SendToMqttSetupView.xaml -------------------------------------------------------------------------------- /MQTT/SendToMqttSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/SendToMqttSetupView.xaml.cs -------------------------------------------------------------------------------- /MQTT/SendToMqttTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/SendToMqttTemplate.xaml -------------------------------------------------------------------------------- /MQTT/SendToMqttTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MQTT/SendToMqttTemplate.xaml.cs -------------------------------------------------------------------------------- /MetadataClient/IMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MetadataClient/IMetadata.cs -------------------------------------------------------------------------------- /MetadataClient/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/MetadataClient/Metadata.cs -------------------------------------------------------------------------------- /NtfySh/FailuresToNtfySh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/FailuresToNtfySh.cs -------------------------------------------------------------------------------- /NtfySh/NtfySh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/NtfySh.cs -------------------------------------------------------------------------------- /NtfySh/NtfyShPriorityLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/NtfyShPriorityLevels.cs -------------------------------------------------------------------------------- /NtfySh/SendToNtfySh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/SendToNtfySh.cs -------------------------------------------------------------------------------- /NtfySh/SendToNtfyShSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/SendToNtfyShSetupView.xaml -------------------------------------------------------------------------------- /NtfySh/SendToNtfyShSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/SendToNtfyShSetupView.xaml.cs -------------------------------------------------------------------------------- /NtfySh/SendToNtfyShTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/SendToNtfyShTemplate.xaml -------------------------------------------------------------------------------- /NtfySh/SendToNtfyShTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/NtfySh/SendToNtfyShTemplate.xaml.cs -------------------------------------------------------------------------------- /Options.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Options.xaml -------------------------------------------------------------------------------- /Options.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Options.xaml.cs -------------------------------------------------------------------------------- /PlaySound/PlaySound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySound.cs -------------------------------------------------------------------------------- /PlaySound/PlaySoundCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundCommon.cs -------------------------------------------------------------------------------- /PlaySound/PlaySoundOnFailureTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundOnFailureTrigger.cs -------------------------------------------------------------------------------- /PlaySound/PlaySoundOnFailureTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundOnFailureTriggerTemplate.xaml -------------------------------------------------------------------------------- /PlaySound/PlaySoundOnFailureTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundOnFailureTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /PlaySound/PlaySoundTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundTemplate.xaml -------------------------------------------------------------------------------- /PlaySound/PlaySoundTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PlaySound/PlaySoundTemplate.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Pushover/FailuresToPushoverTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/FailuresToPushoverTrigger.cs -------------------------------------------------------------------------------- /Pushover/FailuresToPushoverTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/FailuresToPushoverTriggerTemplate.xaml -------------------------------------------------------------------------------- /Pushover/FailuresToPushoverTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/FailuresToPushoverTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /Pushover/SendToPushover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/SendToPushover.cs -------------------------------------------------------------------------------- /Pushover/SendToPushoverSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/SendToPushoverSetupView.xaml -------------------------------------------------------------------------------- /Pushover/SendToPushoverSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/SendToPushoverSetupView.xaml.cs -------------------------------------------------------------------------------- /Pushover/SendToPushoverTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/SendToPushoverTemplate.xaml -------------------------------------------------------------------------------- /Pushover/SendToPushoverTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Pushover/SendToPushoverTemplate.xaml.cs -------------------------------------------------------------------------------- /PushoverClient/NotificationSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PushoverClient/NotificationSound.cs -------------------------------------------------------------------------------- /PushoverClient/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PushoverClient/Priority.cs -------------------------------------------------------------------------------- /PushoverClient/PushoverClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/PushoverClient/PushoverClient.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Resources/Converters.xaml -------------------------------------------------------------------------------- /Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Resources/Icons.xaml -------------------------------------------------------------------------------- /Slack/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/Channel.cs -------------------------------------------------------------------------------- /Slack/FailuresToSlackTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/FailuresToSlackTrigger.cs -------------------------------------------------------------------------------- /Slack/FailuresToSlackTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/FailuresToSlackTriggerTemplate.xaml -------------------------------------------------------------------------------- /Slack/FailuresToSlackTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/FailuresToSlackTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /Slack/SendToSlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SendToSlack.cs -------------------------------------------------------------------------------- /Slack/SendToSlackSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SendToSlackSetupView.xaml -------------------------------------------------------------------------------- /Slack/SendToSlackSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SendToSlackSetupView.xaml.cs -------------------------------------------------------------------------------- /Slack/SendToSlackTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SendToSlackTemplate.xaml -------------------------------------------------------------------------------- /Slack/SendToSlackTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SendToSlackTemplate.xaml.cs -------------------------------------------------------------------------------- /Slack/SlackClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SlackClient.cs -------------------------------------------------------------------------------- /Slack/SlackEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SlackEvents.cs -------------------------------------------------------------------------------- /Slack/SlackImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Slack/SlackImage.cs -------------------------------------------------------------------------------- /TTS/FailuresToTTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/FailuresToTTS.cs -------------------------------------------------------------------------------- /TTS/FailuresToTTSTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/FailuresToTTSTemplate.xaml -------------------------------------------------------------------------------- /TTS/FailuresToTTSTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/FailuresToTTSTemplate.xaml.cs -------------------------------------------------------------------------------- /TTS/SendToTTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/SendToTTS.cs -------------------------------------------------------------------------------- /TTS/SendToTTSTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/SendToTTSTemplate.xaml -------------------------------------------------------------------------------- /TTS/SendToTTSTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/SendToTTSTemplate.xaml.cs -------------------------------------------------------------------------------- /TTS/SpeechApiReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/SpeechApiReflectionHelper.cs -------------------------------------------------------------------------------- /TTS/TextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/TTS/TextToSpeech.cs -------------------------------------------------------------------------------- /Telegram/FailuresToTelegramTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/FailuresToTelegramTrigger.cs -------------------------------------------------------------------------------- /Telegram/FailuresToTelegramTriggerTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/FailuresToTelegramTriggerTemplate.xaml -------------------------------------------------------------------------------- /Telegram/FailuresToTelegramTriggerTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/FailuresToTelegramTriggerTemplate.xaml.cs -------------------------------------------------------------------------------- /Telegram/SendToTelegram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/SendToTelegram.cs -------------------------------------------------------------------------------- /Telegram/SendToTelegramSetupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/SendToTelegramSetupView.xaml -------------------------------------------------------------------------------- /Telegram/SendToTelegramSetupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/SendToTelegramSetupView.xaml.cs -------------------------------------------------------------------------------- /Telegram/SendToTelegramTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/SendToTelegramTemplate.xaml -------------------------------------------------------------------------------- /Telegram/SendToTelegramTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/SendToTelegramTemplate.xaml.cs -------------------------------------------------------------------------------- /Telegram/TelegramCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Telegram/TelegramCommon.cs -------------------------------------------------------------------------------- /Utilities/BackgroundQueueWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/BackgroundQueueWorker.cs -------------------------------------------------------------------------------- /Utilities/EnumBindingSourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/EnumBindingSourceExtension.cs -------------------------------------------------------------------------------- /Utilities/FailedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/FailedItem.cs -------------------------------------------------------------------------------- /Utilities/HttpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/HttpUtils.cs -------------------------------------------------------------------------------- /Utilities/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/Security.cs -------------------------------------------------------------------------------- /Utilities/SelectTextOnFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/SelectTextOnFocus.cs -------------------------------------------------------------------------------- /Utilities/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/Utilities/Utilities.cs -------------------------------------------------------------------------------- /plugin.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleghent/nina-ground-station/HEAD/plugin.licenseheader --------------------------------------------------------------------------------