├── .gitattributes ├── .gitignore ├── App.config ├── AudioForVatsim ├── AfvManager.cs └── IAfvManager.cs ├── CONTRIBUTING.md ├── Common ├── AudioUtils.cs ├── CallsignStringExtensions.cs ├── ComboboxExtensions.cs ├── FileChecksum.cs ├── FlashTaskbar.cs ├── FlightPlan.cs ├── FlightPlanTypeExtensions.cs ├── FrequencyUtils.cs ├── JsonUtils.cs ├── ScreenUtils.cs ├── SerializationUtils.cs ├── SingleInstance.cs ├── StringUtils.cs ├── SystemIdentifier.cs ├── VoiceType.cs ├── VoiceTypeExtensions.cs ├── WindowProperties.cs └── WorldPoint.cs ├── Config ├── AppConfig.cs ├── IAppConfig.cs ├── PTTConfiguration.cs ├── StrictIntConverter.cs └── ToggleDisplayConfiguration.cs ├── ConnectForm.Designer.cs ├── ConnectForm.cs ├── ConnectForm.resx ├── Core ├── EventBus │ ├── EventBus.cs │ └── IEventBus.cs ├── EventTopics.cs ├── Events │ ├── AircraftUpdateReceivedEventArgs.cs │ ├── ChatSessionStartedEventArgs.cs │ ├── ClientEventArgs.cs │ ├── ComFrequencyAliasChangedEventArgs.cs │ ├── ComRadioTxRxChangedEventArgs.cs │ ├── ControllerEventArgs.cs │ ├── ControllerUpdateReceivedEventArgs.cs │ ├── DataRefEventArgs.cs │ ├── FlightPlanReceivedEventArgs.cs │ ├── IsValidAtcReceivedEventArgs.cs │ ├── MetarRequestedEventArgs.cs │ ├── NetworkConnectedEventArgs.cs │ ├── NetworkDataReceivedEventArgs.cs │ ├── NetworkDisconnectedEventArgs.cs │ ├── NotificationPostedEventArgs.cs │ ├── OverrideComStatusEventArgs.cs │ ├── PlaySoundEventArgs.cs │ ├── PrivateMessageSentEventArgs.cs │ ├── PushToTalkStateChangedEventArgs.cs │ ├── RadioMessageReceivedEventArgs.cs │ ├── RadioMessageSentEventArgs.cs │ ├── RadioStackStateChangedEventArgs.cs │ ├── RadioVolumeChangedEventArgs.cs │ ├── RealNameRequestedEventArgs.cs │ ├── RequestControllerAtisEventArgs.cs │ ├── RequestedAtisReceivedEventArgs.cs │ ├── SelcalAlertReceivedEventArgs.cs │ ├── SimulatorMessageEventArgs.cs │ ├── SquawkingIdentChangedEventArgs.cs │ ├── UserAircraftDataUpdatedEventArgs.cs │ └── WallopReceivedEventArgs.cs ├── IPttManager.cs ├── ISoundManager.cs ├── ITabPages.cs ├── IUserInterface.cs ├── IVersionCheck.cs ├── InjectionModules.cs ├── PttManager.cs ├── SoundManager.cs └── VersionCheck.cs ├── FlightPlanForm.Designer.cs ├── FlightPlanForm.cs ├── FlightPlanForm.resx ├── LICENSE ├── Libraries ├── GeoVR │ ├── GeoVR.Client │ │ ├── Audio │ │ │ ├── AfvMeteringSampleProvider.cs │ │ │ ├── Audio Tree │ │ │ │ ├── BiQuadFilterExt.cs │ │ │ │ ├── BlockingToneSampleProvider.cs │ │ │ │ ├── CallsignSampleProvider.cs │ │ │ │ ├── EqualizerSampleProvider.cs │ │ │ │ ├── ReceiverSampleProvider.cs │ │ │ │ ├── ResourceSoundSampleProvider.cs │ │ │ │ ├── Samples.cs │ │ │ │ └── SoundcardSampleProvider.cs │ │ │ ├── CallsignDelayCache.cs │ │ │ ├── Input.cs │ │ │ ├── LimiterEffect.cs │ │ │ ├── Output.cs │ │ │ └── ResourceSound.cs │ │ ├── CallRequestEventArgs.cs │ │ ├── CallResponseEventArgs.cs │ │ ├── Classes │ │ │ ├── AudioConfig.cs │ │ │ ├── ClientAudioUtilities.cs │ │ │ └── DataServerAcks.cs │ │ ├── Clients │ │ │ ├── BaseClient.cs │ │ │ ├── BotClient.cs │ │ │ ├── IClient.cs │ │ │ └── UserClient.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── GeoVR.Client.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Samples │ │ │ ├── AC_Bus_f32.wav │ │ │ ├── Click_f32.wav │ │ │ ├── Crackle_f32.wav │ │ │ ├── HF_WhiteNoise_f32.wav │ │ │ ├── Land_Line_Ring_f32.wav │ │ │ └── WhiteNoise_f32.wav │ ├── GeoVR.Connection │ │ ├── ApiServerConnection.cs │ │ ├── ApiServerConnectionPublic.cs │ │ ├── Classes │ │ │ └── ClientConnectionData.cs │ │ ├── ClientConnection.cs │ │ ├── Extension Methods │ │ │ └── DealerSocketExtensions.cs │ │ └── GeoVR.Connection.csproj │ ├── GeoVR.Shared │ │ ├── Classes │ │ │ ├── CallsignOnTransceiverNames.cs │ │ │ ├── Consts.cs │ │ │ └── XMLSettings.cs │ │ ├── DTOs │ │ │ ├── Client to API Server │ │ │ │ ├── PutUserEnableDto.cs │ │ │ │ ├── Request │ │ │ │ │ ├── PostCallsignRequestDto.cs │ │ │ │ │ ├── PostFsdStationRequestDto.cs │ │ │ │ │ ├── PostImpersonateUserRequestDto.cs │ │ │ │ │ ├── PostStationRequestDto.cs │ │ │ │ │ ├── PostStationSearchRequestDto.cs │ │ │ │ │ ├── PostStationTransceiverRequestDto.cs │ │ │ │ │ ├── PostStationTransceiverSearchRequestDto.cs │ │ │ │ │ ├── PostUserRequestDto.cs │ │ │ │ │ ├── PutBotRequestDto.cs │ │ │ │ │ ├── PutStationRequestDto.cs │ │ │ │ │ ├── PutStationTransceiverExclusionsRequestDto.cs │ │ │ │ │ ├── PutStationTransceiverRequestDto.cs │ │ │ │ │ └── PutVccsStationsRequestDto.cs │ │ │ │ └── Response │ │ │ │ │ ├── GetTokensResponseDto.cs │ │ │ │ │ ├── PostStationSearchResponseDto.cs │ │ │ │ │ └── PostTransceiverSearchResponseDto.cs │ │ │ ├── Client to Data Server │ │ │ │ ├── Ack │ │ │ │ │ └── UserDataHeartbeatAckDto.cs │ │ │ │ └── CallsignDataHeartbeatDto.cs │ │ │ ├── Client to Voice Server │ │ │ │ ├── AudioTxDto.cs │ │ │ │ ├── CallDto.cs │ │ │ │ ├── HeartbeatAckDto.cs │ │ │ │ └── HeartbeatDto.cs │ │ │ ├── Domain │ │ │ │ ├── CallsignTxTransceiversRxCallsigns.cs │ │ │ │ ├── CrossCoupleGroupDto.cs │ │ │ │ ├── DirectConfigurationDto.cs │ │ │ │ ├── DirectToCallsign.cs │ │ │ │ ├── PositionDto.cs │ │ │ │ ├── RxCallsignDto.cs │ │ │ │ ├── RxTransceiverDto.cs │ │ │ │ ├── StationDto.cs │ │ │ │ ├── StationFlatDto.cs │ │ │ │ ├── StationTransceiverDto.cs │ │ │ │ ├── StationTreeDto.cs │ │ │ │ ├── TransceiverDto.cs │ │ │ │ ├── TxTelephoneDto.cs │ │ │ │ ├── TxTransceiverDto.cs │ │ │ │ ├── TxTransceiverRxCallsigns.cs │ │ │ │ ├── UserDataDto.cs │ │ │ │ ├── UserDto.cs │ │ │ │ ├── VoiceRoomDto.cs │ │ │ │ └── VoiceRoomRxCallsignsDto.cs │ │ │ ├── IAck.cs │ │ │ ├── ShortDtoNames.cs │ │ │ └── Voice Server to Client │ │ │ │ └── AudioRxDto.cs │ │ ├── Enums │ │ │ └── DisconnectReasons.cs │ │ ├── Events │ │ │ ├── ConnectedEventArgs.cs │ │ │ ├── DisconnectedEventArgs.cs │ │ │ ├── NotificationEventArgs.cs │ │ │ └── TransceiverReceivingCallsignsChangedEventArgs.cs │ │ ├── Extensions │ │ │ ├── DebugStringExtensions.cs │ │ │ ├── ListTransceiversDtoExtensions.cs │ │ │ └── StationTransceiverDtoExtensions.cs │ │ ├── GeoVR.Shared.csproj │ │ └── Interfaces │ │ │ ├── IAudioDto.cs │ │ │ ├── ICallDto.cs │ │ │ ├── IMsgPack.cs │ │ │ └── IMsgPackTypeName.cs │ ├── GeoVR.sln │ └── Libraries │ │ ├── MessagePack.CryptoDto │ │ ├── Aead.cs │ │ ├── CryptoDtoAttribute.cs │ │ ├── CryptoDtoChannel.cs │ │ ├── CryptoDtoChannelConfigDto.cs │ │ ├── CryptoDtoChannelStore.cs │ │ ├── CryptoDtoDeserializer.cs │ │ ├── CryptoDtoHeaderDto.cs │ │ ├── CryptoDtoMode.cs │ │ ├── CryptoDtoSerializer.cs │ │ └── MessagePack.CryptoDto.csproj │ │ └── NaCl.Core │ │ ├── AssemblyInfo.cs │ │ ├── Base │ │ ├── ChaCha20Base.cs │ │ ├── ChaCha20BaseIntrinsics.cs │ │ ├── Snuffle.cs │ │ └── SnufflePoly1305.cs │ │ ├── ChaCha20.cs │ │ ├── ChaCha20Poly1305.cs │ │ ├── Internal │ │ ├── Array16.cs │ │ ├── Array8.cs │ │ ├── ByteIntegerConverter.cs │ │ └── CryptoBytes.cs │ │ ├── NaCl.Core.csproj │ │ ├── Poly1305.cs │ │ ├── XChaCha20.cs │ │ └── XChaCha20Poly1305.cs └── XPlaneConnector │ ├── Commands.cs │ ├── DataRefElement.cs │ ├── DataRefs.cs │ ├── StringDataRefElement.cs │ ├── XPDatagram.cs │ ├── XPlaneCommand.cs │ ├── XPlaneConnector.cs │ ├── XPlaneConnector.csproj │ └── license.txt ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Network ├── Aircraft │ ├── AircraftConfigurationInfo.cs │ ├── INetworkAircraftManager.cs │ ├── LegacyClientConfigFlags.cs │ ├── NetworkAircraft.cs │ ├── NetworkAircraftConfig.cs │ ├── NetworkAircraftManager.cs │ ├── NetworkAircraftState.cs │ └── NetworkAircraftTransponder.cs ├── ConnectInfo.cs ├── Controllers │ ├── Controller.cs │ ├── ControllerAtisManager.cs │ ├── ControllerManager.cs │ ├── IControllerAtisManager.cs │ └── IControllerManager.cs ├── DisconnectInfo.cs ├── FsdManager.cs ├── IFsdManger.cs ├── ISelcalGenerator.cs ├── SelcalGenerator.cs └── VatsimData.cs ├── PilotClient.licenseheader ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources └── xPilot_Logo.png ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SetupGuide.Designer.cs ├── SetupGuide.cs ├── SetupGuide.resx ├── SetupGuide ├── AudioConfiguration.Designer.cs ├── AudioConfiguration.cs ├── AudioConfiguration.resx ├── ConflictingPlugins.Designer.cs ├── ConflictingPlugins.cs ├── ConflictingPlugins.resx ├── CslConfiguration.Designer.cs ├── CslConfiguration.cs ├── CslConfiguration.resx ├── ISetup.cs ├── ISetupScreen.cs ├── NetworkCredentials.Designer.cs ├── NetworkCredentials.cs ├── NetworkCredentials.resx ├── PushToTalk.Designer.cs ├── PushToTalk.cs ├── PushToTalk.resx ├── SetXplanePath.Designer.cs ├── SetXplanePath.cs ├── SetXplanePath.resx ├── SetupScreen.cs ├── WelcomeView.Designer.cs ├── WelcomeView.cs └── WelcomeView.resx ├── UI ├── ChatBox.Designer.cs ├── ChatBox.cs ├── CustomTabControl.cs ├── FlatButton.cs ├── FlatCheckbox.cs ├── LevelMeter.cs ├── NotesTab.cs ├── PrivateMessageTab.cs ├── TextCommandLine.cs ├── TransparentClickLabel.cs └── TransparentClickPanel.cs ├── UpdateForm.Designer.cs ├── UpdateForm.cs ├── UpdateForm.resx ├── XPilot.PilotClient.csproj ├── XPilot.PilotClient.sln ├── XplaneAdapter ├── IUserAircraftManager.cs ├── IXplaneConnectionManager.cs ├── UserAircraftData.cs ├── UserAircraftManager.cs ├── UserAircraftRadioStack.cs ├── WhosOnlineList.cs ├── XplaneConnect.cs └── XplaneConnectionManager.cs ├── icon.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/App.config -------------------------------------------------------------------------------- /AudioForVatsim/AfvManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/AudioForVatsim/AfvManager.cs -------------------------------------------------------------------------------- /AudioForVatsim/IAfvManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/AudioForVatsim/IAfvManager.cs -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Common/AudioUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/AudioUtils.cs -------------------------------------------------------------------------------- /Common/CallsignStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/CallsignStringExtensions.cs -------------------------------------------------------------------------------- /Common/ComboboxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/ComboboxExtensions.cs -------------------------------------------------------------------------------- /Common/FileChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/FileChecksum.cs -------------------------------------------------------------------------------- /Common/FlashTaskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/FlashTaskbar.cs -------------------------------------------------------------------------------- /Common/FlightPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/FlightPlan.cs -------------------------------------------------------------------------------- /Common/FlightPlanTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/FlightPlanTypeExtensions.cs -------------------------------------------------------------------------------- /Common/FrequencyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/FrequencyUtils.cs -------------------------------------------------------------------------------- /Common/JsonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/JsonUtils.cs -------------------------------------------------------------------------------- /Common/ScreenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/ScreenUtils.cs -------------------------------------------------------------------------------- /Common/SerializationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/SerializationUtils.cs -------------------------------------------------------------------------------- /Common/SingleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/SingleInstance.cs -------------------------------------------------------------------------------- /Common/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/StringUtils.cs -------------------------------------------------------------------------------- /Common/SystemIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/SystemIdentifier.cs -------------------------------------------------------------------------------- /Common/VoiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/VoiceType.cs -------------------------------------------------------------------------------- /Common/VoiceTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/VoiceTypeExtensions.cs -------------------------------------------------------------------------------- /Common/WindowProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/WindowProperties.cs -------------------------------------------------------------------------------- /Common/WorldPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Common/WorldPoint.cs -------------------------------------------------------------------------------- /Config/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Config/AppConfig.cs -------------------------------------------------------------------------------- /Config/IAppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Config/IAppConfig.cs -------------------------------------------------------------------------------- /Config/PTTConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Config/PTTConfiguration.cs -------------------------------------------------------------------------------- /Config/StrictIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Config/StrictIntConverter.cs -------------------------------------------------------------------------------- /Config/ToggleDisplayConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Config/ToggleDisplayConfiguration.cs -------------------------------------------------------------------------------- /ConnectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/ConnectForm.Designer.cs -------------------------------------------------------------------------------- /ConnectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/ConnectForm.cs -------------------------------------------------------------------------------- /ConnectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/ConnectForm.resx -------------------------------------------------------------------------------- /Core/EventBus/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/EventBus/EventBus.cs -------------------------------------------------------------------------------- /Core/EventBus/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/EventBus/IEventBus.cs -------------------------------------------------------------------------------- /Core/EventTopics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/EventTopics.cs -------------------------------------------------------------------------------- /Core/Events/AircraftUpdateReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/AircraftUpdateReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ChatSessionStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ChatSessionStartedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ClientEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ClientEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ComFrequencyAliasChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ComFrequencyAliasChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ComRadioTxRxChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ComRadioTxRxChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ControllerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ControllerEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/ControllerUpdateReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/ControllerUpdateReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/DataRefEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/DataRefEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/FlightPlanReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/FlightPlanReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/IsValidAtcReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/IsValidAtcReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/MetarRequestedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/MetarRequestedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/NetworkConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/NetworkConnectedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/NetworkDataReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/NetworkDataReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/NetworkDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/NetworkDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/NotificationPostedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/NotificationPostedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/OverrideComStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/OverrideComStatusEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/PlaySoundEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/PlaySoundEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/PrivateMessageSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/PrivateMessageSentEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/PushToTalkStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/PushToTalkStateChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RadioMessageReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RadioMessageReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RadioMessageSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RadioMessageSentEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RadioStackStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RadioStackStateChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RadioVolumeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RadioVolumeChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RealNameRequestedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RealNameRequestedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RequestControllerAtisEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RequestControllerAtisEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/RequestedAtisReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/RequestedAtisReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/SelcalAlertReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/SelcalAlertReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/SimulatorMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/SimulatorMessageEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/SquawkingIdentChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/SquawkingIdentChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/UserAircraftDataUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/UserAircraftDataUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Core/Events/WallopReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/Events/WallopReceivedEventArgs.cs -------------------------------------------------------------------------------- /Core/IPttManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/IPttManager.cs -------------------------------------------------------------------------------- /Core/ISoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/ISoundManager.cs -------------------------------------------------------------------------------- /Core/ITabPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/ITabPages.cs -------------------------------------------------------------------------------- /Core/IUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/IUserInterface.cs -------------------------------------------------------------------------------- /Core/IVersionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/IVersionCheck.cs -------------------------------------------------------------------------------- /Core/InjectionModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/InjectionModules.cs -------------------------------------------------------------------------------- /Core/PttManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/PttManager.cs -------------------------------------------------------------------------------- /Core/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/SoundManager.cs -------------------------------------------------------------------------------- /Core/VersionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Core/VersionCheck.cs -------------------------------------------------------------------------------- /FlightPlanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/FlightPlanForm.Designer.cs -------------------------------------------------------------------------------- /FlightPlanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/FlightPlanForm.cs -------------------------------------------------------------------------------- /FlightPlanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/FlightPlanForm.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/AfvMeteringSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/AfvMeteringSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/BiQuadFilterExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/BiQuadFilterExt.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/BlockingToneSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/BlockingToneSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/CallsignSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/CallsignSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/EqualizerSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/EqualizerSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/ReceiverSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/ReceiverSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/ResourceSoundSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/ResourceSoundSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/Samples.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/SoundcardSampleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Audio Tree/SoundcardSampleProvider.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/CallsignDelayCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/CallsignDelayCache.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Input.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/LimiterEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/LimiterEffect.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/Output.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Audio/ResourceSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Audio/ResourceSound.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/CallRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/CallRequestEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/CallResponseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/CallResponseEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Classes/AudioConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Classes/AudioConfig.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Classes/ClientAudioUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Classes/ClientAudioUtilities.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Classes/DataServerAcks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Classes/DataServerAcks.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Clients/BaseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Clients/BaseClient.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Clients/BotClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Clients/BotClient.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Clients/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Clients/IClient.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Clients/UserClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Clients/UserClient.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/GeoVR.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/GeoVR.Client.csproj -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/AC_Bus_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/AC_Bus_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/Click_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/Click_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/Crackle_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/Crackle_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/HF_WhiteNoise_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/HF_WhiteNoise_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/Land_Line_Ring_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/Land_Line_Ring_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Client/Samples/WhiteNoise_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Client/Samples/WhiteNoise_f32.wav -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/ApiServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/ApiServerConnection.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/ApiServerConnectionPublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/ApiServerConnectionPublic.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/Classes/ClientConnectionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/Classes/ClientConnectionData.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/ClientConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/ClientConnection.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/Extension Methods/DealerSocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/Extension Methods/DealerSocketExtensions.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Connection/GeoVR.Connection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Connection/GeoVR.Connection.csproj -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Classes/CallsignOnTransceiverNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Classes/CallsignOnTransceiverNames.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Classes/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Classes/Consts.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Classes/XMLSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Classes/XMLSettings.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/PutUserEnableDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/PutUserEnableDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostCallsignRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostCallsignRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostFsdStationRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostFsdStationRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostImpersonateUserRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostImpersonateUserRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationSearchRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationSearchRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationTransceiverRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationTransceiverRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationTransceiverSearchRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostStationTransceiverSearchRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostUserRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PostUserRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutBotRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutBotRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationTransceiverExclusionsRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationTransceiverExclusionsRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationTransceiverRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutStationTransceiverRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutVccsStationsRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Request/PutVccsStationsRequestDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/GetTokensResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/GetTokensResponseDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/PostStationSearchResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/PostStationSearchResponseDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/PostTransceiverSearchResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to API Server/Response/PostTransceiverSearchResponseDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Data Server/Ack/UserDataHeartbeatAckDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Data Server/Ack/UserDataHeartbeatAckDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Data Server/CallsignDataHeartbeatDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Data Server/CallsignDataHeartbeatDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/AudioTxDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/AudioTxDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/CallDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/CallDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/HeartbeatAckDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/HeartbeatAckDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/HeartbeatDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Client to Voice Server/HeartbeatDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/CallsignTxTransceiversRxCallsigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/CallsignTxTransceiversRxCallsigns.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/CrossCoupleGroupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/CrossCoupleGroupDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/DirectConfigurationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/DirectConfigurationDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/DirectToCallsign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/DirectToCallsign.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/PositionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/PositionDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/RxCallsignDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/RxCallsignDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/RxTransceiverDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/RxTransceiverDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationFlatDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationFlatDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationTransceiverDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationTransceiverDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationTreeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/StationTreeDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TransceiverDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TransceiverDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTelephoneDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTelephoneDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTransceiverDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTransceiverDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTransceiverRxCallsigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/TxTransceiverRxCallsigns.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/UserDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/UserDataDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/UserDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/VoiceRoomDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/VoiceRoomDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/VoiceRoomRxCallsignsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Domain/VoiceRoomRxCallsignsDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/IAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/IAck.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/ShortDtoNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/ShortDtoNames.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/DTOs/Voice Server to Client/AudioRxDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/DTOs/Voice Server to Client/AudioRxDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Enums/DisconnectReasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Enums/DisconnectReasons.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Events/ConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Events/ConnectedEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Events/DisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Events/DisconnectedEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Events/NotificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Events/NotificationEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Events/TransceiverReceivingCallsignsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Events/TransceiverReceivingCallsignsChangedEventArgs.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Extensions/DebugStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Extensions/DebugStringExtensions.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Extensions/ListTransceiversDtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Extensions/ListTransceiversDtoExtensions.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Extensions/StationTransceiverDtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Extensions/StationTransceiverDtoExtensions.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/GeoVR.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/GeoVR.Shared.csproj -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Interfaces/IAudioDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Interfaces/IAudioDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Interfaces/ICallDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Interfaces/ICallDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Interfaces/IMsgPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Interfaces/IMsgPack.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.Shared/Interfaces/IMsgPackTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.Shared/Interfaces/IMsgPackTypeName.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/GeoVR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/GeoVR.sln -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/Aead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/Aead.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoAttribute.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannel.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannelConfigDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannelConfigDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannelStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoChannelStore.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoDeserializer.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoHeaderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoHeaderDto.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoMode.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/CryptoDtoSerializer.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/MessagePack.CryptoDto/MessagePack.CryptoDto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/MessagePack.CryptoDto/MessagePack.CryptoDto.csproj -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Base/ChaCha20Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Base/ChaCha20Base.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Base/ChaCha20BaseIntrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Base/ChaCha20BaseIntrinsics.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Base/Snuffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Base/Snuffle.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Base/SnufflePoly1305.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Base/SnufflePoly1305.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/ChaCha20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/ChaCha20.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/ChaCha20Poly1305.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/ChaCha20Poly1305.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Internal/Array16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Internal/Array16.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Internal/Array8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Internal/Array8.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Internal/ByteIntegerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Internal/ByteIntegerConverter.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Internal/CryptoBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Internal/CryptoBytes.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/NaCl.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/NaCl.Core.csproj -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/Poly1305.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/Poly1305.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/XChaCha20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/XChaCha20.cs -------------------------------------------------------------------------------- /Libraries/GeoVR/Libraries/NaCl.Core/XChaCha20Poly1305.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/GeoVR/Libraries/NaCl.Core/XChaCha20Poly1305.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/Commands.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/DataRefElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/DataRefElement.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/DataRefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/DataRefs.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/StringDataRefElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/StringDataRefElement.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/XPDatagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/XPDatagram.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/XPlaneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/XPlaneCommand.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/XPlaneConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/XPlaneConnector.cs -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/XPlaneConnector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/XPlaneConnector.csproj -------------------------------------------------------------------------------- /Libraries/XPlaneConnector/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Libraries/XPlaneConnector/license.txt -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Network/Aircraft/AircraftConfigurationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/AircraftConfigurationInfo.cs -------------------------------------------------------------------------------- /Network/Aircraft/INetworkAircraftManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/INetworkAircraftManager.cs -------------------------------------------------------------------------------- /Network/Aircraft/LegacyClientConfigFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/LegacyClientConfigFlags.cs -------------------------------------------------------------------------------- /Network/Aircraft/NetworkAircraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/NetworkAircraft.cs -------------------------------------------------------------------------------- /Network/Aircraft/NetworkAircraftConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/NetworkAircraftConfig.cs -------------------------------------------------------------------------------- /Network/Aircraft/NetworkAircraftManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/NetworkAircraftManager.cs -------------------------------------------------------------------------------- /Network/Aircraft/NetworkAircraftState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/NetworkAircraftState.cs -------------------------------------------------------------------------------- /Network/Aircraft/NetworkAircraftTransponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Aircraft/NetworkAircraftTransponder.cs -------------------------------------------------------------------------------- /Network/ConnectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/ConnectInfo.cs -------------------------------------------------------------------------------- /Network/Controllers/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Controllers/Controller.cs -------------------------------------------------------------------------------- /Network/Controllers/ControllerAtisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Controllers/ControllerAtisManager.cs -------------------------------------------------------------------------------- /Network/Controllers/ControllerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Controllers/ControllerManager.cs -------------------------------------------------------------------------------- /Network/Controllers/IControllerAtisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Controllers/IControllerAtisManager.cs -------------------------------------------------------------------------------- /Network/Controllers/IControllerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/Controllers/IControllerManager.cs -------------------------------------------------------------------------------- /Network/DisconnectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/DisconnectInfo.cs -------------------------------------------------------------------------------- /Network/FsdManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/FsdManager.cs -------------------------------------------------------------------------------- /Network/IFsdManger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/IFsdManger.cs -------------------------------------------------------------------------------- /Network/ISelcalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/ISelcalGenerator.cs -------------------------------------------------------------------------------- /Network/SelcalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/SelcalGenerator.cs -------------------------------------------------------------------------------- /Network/VatsimData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Network/VatsimData.cs -------------------------------------------------------------------------------- /PilotClient.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/PilotClient.licenseheader -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/README.md -------------------------------------------------------------------------------- /Resources/xPilot_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/Resources/xPilot_Logo.png -------------------------------------------------------------------------------- /SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SettingsForm.cs -------------------------------------------------------------------------------- /SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SettingsForm.resx -------------------------------------------------------------------------------- /SetupGuide.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide.Designer.cs -------------------------------------------------------------------------------- /SetupGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide.cs -------------------------------------------------------------------------------- /SetupGuide.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide.resx -------------------------------------------------------------------------------- /SetupGuide/AudioConfiguration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/AudioConfiguration.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/AudioConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/AudioConfiguration.cs -------------------------------------------------------------------------------- /SetupGuide/AudioConfiguration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/AudioConfiguration.resx -------------------------------------------------------------------------------- /SetupGuide/ConflictingPlugins.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/ConflictingPlugins.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/ConflictingPlugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/ConflictingPlugins.cs -------------------------------------------------------------------------------- /SetupGuide/ConflictingPlugins.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/ConflictingPlugins.resx -------------------------------------------------------------------------------- /SetupGuide/CslConfiguration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/CslConfiguration.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/CslConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/CslConfiguration.cs -------------------------------------------------------------------------------- /SetupGuide/CslConfiguration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/CslConfiguration.resx -------------------------------------------------------------------------------- /SetupGuide/ISetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/ISetup.cs -------------------------------------------------------------------------------- /SetupGuide/ISetupScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/ISetupScreen.cs -------------------------------------------------------------------------------- /SetupGuide/NetworkCredentials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/NetworkCredentials.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/NetworkCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/NetworkCredentials.cs -------------------------------------------------------------------------------- /SetupGuide/NetworkCredentials.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/NetworkCredentials.resx -------------------------------------------------------------------------------- /SetupGuide/PushToTalk.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/PushToTalk.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/PushToTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/PushToTalk.cs -------------------------------------------------------------------------------- /SetupGuide/PushToTalk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/PushToTalk.resx -------------------------------------------------------------------------------- /SetupGuide/SetXplanePath.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/SetXplanePath.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/SetXplanePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/SetXplanePath.cs -------------------------------------------------------------------------------- /SetupGuide/SetXplanePath.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/SetXplanePath.resx -------------------------------------------------------------------------------- /SetupGuide/SetupScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/SetupScreen.cs -------------------------------------------------------------------------------- /SetupGuide/WelcomeView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/WelcomeView.Designer.cs -------------------------------------------------------------------------------- /SetupGuide/WelcomeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/WelcomeView.cs -------------------------------------------------------------------------------- /SetupGuide/WelcomeView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/SetupGuide/WelcomeView.resx -------------------------------------------------------------------------------- /UI/ChatBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/ChatBox.Designer.cs -------------------------------------------------------------------------------- /UI/ChatBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/ChatBox.cs -------------------------------------------------------------------------------- /UI/CustomTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/CustomTabControl.cs -------------------------------------------------------------------------------- /UI/FlatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/FlatButton.cs -------------------------------------------------------------------------------- /UI/FlatCheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/FlatCheckbox.cs -------------------------------------------------------------------------------- /UI/LevelMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/LevelMeter.cs -------------------------------------------------------------------------------- /UI/NotesTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/NotesTab.cs -------------------------------------------------------------------------------- /UI/PrivateMessageTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/PrivateMessageTab.cs -------------------------------------------------------------------------------- /UI/TextCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/TextCommandLine.cs -------------------------------------------------------------------------------- /UI/TransparentClickLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/TransparentClickLabel.cs -------------------------------------------------------------------------------- /UI/TransparentClickPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UI/TransparentClickPanel.cs -------------------------------------------------------------------------------- /UpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UpdateForm.Designer.cs -------------------------------------------------------------------------------- /UpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UpdateForm.cs -------------------------------------------------------------------------------- /UpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/UpdateForm.resx -------------------------------------------------------------------------------- /XPilot.PilotClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XPilot.PilotClient.csproj -------------------------------------------------------------------------------- /XPilot.PilotClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XPilot.PilotClient.sln -------------------------------------------------------------------------------- /XplaneAdapter/IUserAircraftManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/IUserAircraftManager.cs -------------------------------------------------------------------------------- /XplaneAdapter/IXplaneConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/IXplaneConnectionManager.cs -------------------------------------------------------------------------------- /XplaneAdapter/UserAircraftData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/UserAircraftData.cs -------------------------------------------------------------------------------- /XplaneAdapter/UserAircraftManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/UserAircraftManager.cs -------------------------------------------------------------------------------- /XplaneAdapter/UserAircraftRadioStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/UserAircraftRadioStack.cs -------------------------------------------------------------------------------- /XplaneAdapter/WhosOnlineList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/WhosOnlineList.cs -------------------------------------------------------------------------------- /XplaneAdapter/XplaneConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/XplaneConnect.cs -------------------------------------------------------------------------------- /XplaneAdapter/XplaneConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/XplaneAdapter/XplaneConnectionManager.cs -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/icon.ico -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpilot-project/pilot-client/HEAD/packages.config --------------------------------------------------------------------------------