├── .gitattributes ├── .gitignore ├── Connect-SDK-iOS ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ConnectSDK.podspec ├── ConnectSDK.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── ConnectSDK.xcscheme │ │ ├── ConnectSDKAcceptanceTests.xcscheme │ │ ├── ConnectSDKIntegrationTests.xcscheme │ │ ├── ConnectSDKTests.xcscheme │ │ └── Framework.xcscheme ├── ConnectSDKDefaultPlatforms.h ├── LICENSE ├── README.md ├── core │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── ConnectSDK-Prefix.pch │ ├── ConnectSDK.h │ ├── ConnectSDKAcceptanceTests │ │ ├── AirPlayServiceAcceptanceTests.m │ │ ├── DLNAServiceAcceptanceTests.m │ │ └── Info.plist │ ├── ConnectSDKIntegrationTests │ │ ├── ConnectSDKIntegrationTests-Prefix.pch │ │ ├── EXPMatchers+matchRegex.h │ │ ├── EXPMatchers+matchRegex.m │ │ ├── Frameworks │ │ │ ├── Expecta.framework │ │ │ │ ├── Expecta │ │ │ │ ├── Headers │ │ │ │ ├── LICENSE │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Expecta │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ │ │ ├── EXPDefines.h │ │ │ │ │ │ ├── EXPExpect.h │ │ │ │ │ │ ├── EXPMatcher.h │ │ │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ │ │ ├── EXPMatchers.h │ │ │ │ │ │ ├── Expecta.h │ │ │ │ │ │ ├── ExpectaObject.h │ │ │ │ │ │ └── ExpectaSupport.h │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ └── Specta.framework │ │ │ │ ├── Headers │ │ │ │ ├── LICENSE │ │ │ │ ├── Resources │ │ │ │ ├── Specta │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── SPTSharedExampleGroups.h │ │ │ │ │ ├── SPTSpec.h │ │ │ │ │ ├── Specta.h │ │ │ │ │ ├── SpectaDSL.h │ │ │ │ │ ├── SpectaTypes.h │ │ │ │ │ └── XCTestCase+Specta.h │ │ │ │ ├── LICENSE │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Specta │ │ │ │ └── Current │ │ ├── Info.plist │ │ ├── OCMStubRecorder+SpectaAsync.h │ │ ├── OCMStubRecorder+SpectaAsync.m │ │ └── SupportingFiles │ │ │ └── Info.plist │ ├── ConnectSDKTests │ │ ├── ConnectSDKDefaultPlatformsTests.m │ │ ├── ConnectSDKTests-Prefix.pch │ │ ├── Discovery │ │ │ ├── DiscoveryManagerTests.m │ │ │ └── Providers │ │ │ │ ├── SSDPDiscoveryProviderTests.m │ │ │ │ ├── SSDPDiscoveryProvider_FilteringTests.m │ │ │ │ ├── ZeroConfDiscoveryProviderTests.m │ │ │ │ └── sample_data │ │ │ │ ├── dial │ │ │ │ ├── ssdp_device_description_chromecast.xml │ │ │ │ ├── ssdp_device_description_firetv.xml │ │ │ │ ├── ssdp_device_description_roku2.xml │ │ │ │ ├── ssdp_device_description_samsung_tv.xml │ │ │ │ ├── ssdp_device_description_webos_minor.xml │ │ │ │ └── ssdp_device_description_xbox_dial.xml │ │ │ │ ├── dlna │ │ │ │ ├── ssdp_device_description_dlna_no_required_services.xml │ │ │ │ ├── ssdp_device_description_dlna_root_no_required_services.xml │ │ │ │ ├── ssdp_device_description_lg_speaker.xml │ │ │ │ ├── ssdp_device_description_samsung_tv_dlna.xml │ │ │ │ ├── ssdp_device_description_sonos.xml │ │ │ │ ├── ssdp_device_description_sonos_no_root_services.xml │ │ │ │ ├── ssdp_device_description_webos_minor_dlna.xml │ │ │ │ └── ssdp_device_description_xbox.xml │ │ │ │ ├── ssdp_device_description.xml │ │ │ │ └── webos │ │ │ │ └── ssdp_device_description_webos_minor_webos.xml │ │ ├── Frameworks │ │ │ ├── OCMock.framework │ │ │ │ ├── Headers │ │ │ │ ├── License.txt │ │ │ │ ├── OCMock │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ │ │ │ ├── OCMArg.h │ │ │ │ │ │ ├── OCMConstraint.h │ │ │ │ │ │ ├── OCMLocation.h │ │ │ │ │ │ ├── OCMMacroState.h │ │ │ │ │ │ ├── OCMRecorder.h │ │ │ │ │ │ ├── OCMStubRecorder.h │ │ │ │ │ │ ├── OCMock.h │ │ │ │ │ │ └── OCMockObject.h │ │ │ │ │ ├── OCMock │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Current │ │ │ └── OHHTTPStubs.framework │ │ │ │ ├── Headers │ │ │ │ ├── LICENSE │ │ │ │ ├── OHHTTPStubs │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ └── OHHTTPStubsResponse.h │ │ │ │ ├── OHHTTPStubs │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Helpers │ │ │ ├── AppStateChangeNotifierTests.m │ │ │ ├── BlockRunner │ │ │ │ ├── BlockRunnerTests.m │ │ │ │ ├── DispatchQueueBlockRunnerTests.m │ │ │ │ └── SynchronousBlockRunnerTests.m │ │ │ ├── MediaInfoTests.m │ │ │ ├── NSDictionary+KeyPredicateSearchTests.m │ │ │ ├── NSMutableDictionary+NilSafeTests.m │ │ │ ├── SubscriptionDeduplicatorTests.m │ │ │ └── SubtitleInfoTests.m │ │ ├── NSInvocation+ObjectGetter.h │ │ ├── NSInvocation+ObjectGetter.m │ │ ├── OCMArg+ArgumentCaptor.h │ │ ├── OCMArg+ArgumentCaptor.m │ │ ├── OCMStubRecorder+XCTestExpectation.h │ │ ├── OCMStubRecorder+XCTestExpectation.m │ │ ├── Services │ │ │ ├── AirPlayServiceTests.m │ │ │ ├── Config │ │ │ │ └── ServiceDescriptionTests.m │ │ │ ├── DLNAServiceTests.m │ │ │ ├── Helpers │ │ │ │ ├── AirPlayServiceHTTPKeepAliveTests.m │ │ │ │ ├── AirPlayServiceHTTPTests.m │ │ │ │ ├── DLNAHTTPServerTests.m │ │ │ │ ├── WebOSTVServiceSocketClientTests.m │ │ │ │ └── sample_data │ │ │ │ │ ├── airplay_playbackinfo_ff.json │ │ │ │ │ ├── airplay_playbackinfo_finished.json │ │ │ │ │ ├── airplay_playbackinfo_paused.json │ │ │ │ │ ├── airplay_playbackinfo_playing.json │ │ │ │ │ └── airplay_playbackinfo_rewind.json │ │ │ ├── NetcastTVServiceTests.m │ │ │ ├── RokuServiceTests.m │ │ │ ├── Sessions │ │ │ │ ├── WebAppSessionTests.m │ │ │ │ └── WebOSWebAppSessionTests.m │ │ │ ├── WebOSTVServiceTests.m │ │ │ ├── getmute_response_sonos.xml │ │ │ ├── getmute_response_xbox.xml │ │ │ ├── getpositioninfo_response_sonos.xml │ │ │ ├── getpositioninfo_response_xbox.xml │ │ │ ├── gettransportinfo_response_sonos.xml │ │ │ ├── gettransportinfo_response_xbox.xml │ │ │ ├── getvolume_response_sonos.xml │ │ │ ├── getvolume_response_xbox.xml │ │ │ ├── upnperror_response_sonos.xml │ │ │ └── upnperror_response_xbox.xml │ │ ├── SupportingFiles │ │ │ ├── Info.plist │ │ │ └── the-san-francisco-peaks-of-flagstaff-718x544.jpg │ │ ├── XCTestCase+Common.h │ │ └── XCTestCase+Common.m │ ├── Devices │ │ ├── ConnectableDevice.h │ │ ├── ConnectableDevice.m │ │ ├── ConnectableDeviceDelegate.h │ │ ├── ConnectableDeviceStore.h │ │ ├── DefaultConnectableDeviceStore.h │ │ ├── DefaultConnectableDeviceStore.m │ │ ├── DevicePicker.h │ │ ├── DevicePicker.m │ │ └── DevicePickerDelegate.h │ ├── Discovery │ │ ├── CapabilityFilter.h │ │ ├── CapabilityFilter.m │ │ ├── DiscoveryManager.h │ │ ├── DiscoveryManager.m │ │ ├── DiscoveryManagerDelegate.h │ │ ├── DiscoveryManager_Private.h │ │ ├── DiscoveryProvider.h │ │ ├── DiscoveryProvider.m │ │ ├── DiscoveryProviderDelegate.h │ │ └── Providers │ │ │ ├── SSDPDiscoveryProvider.h │ │ │ ├── SSDPDiscoveryProvider.m │ │ │ ├── SSDPDiscoveryProvider_Private.h │ │ │ ├── ZeroConfDiscoveryProvider.h │ │ │ ├── ZeroConfDiscoveryProvider.m │ │ │ └── ZeroConfDiscoveryProvider_Private.h │ ├── Frameworks │ │ ├── GCDWebServer │ │ │ ├── Core │ │ │ │ ├── GCDWebServer.h │ │ │ │ ├── GCDWebServer.m │ │ │ │ ├── GCDWebServerConnection.h │ │ │ │ ├── GCDWebServerConnection.m │ │ │ │ ├── GCDWebServerFunctions.h │ │ │ │ ├── GCDWebServerFunctions.m │ │ │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ │ │ ├── GCDWebServerPrivate.h │ │ │ │ ├── GCDWebServerRequest.h │ │ │ │ ├── GCDWebServerRequest.m │ │ │ │ ├── GCDWebServerResponse.h │ │ │ │ └── GCDWebServerResponse.m │ │ │ ├── LICENSE │ │ │ ├── Requests │ │ │ │ ├── GCDWebServerDataRequest.h │ │ │ │ ├── GCDWebServerDataRequest.m │ │ │ │ ├── GCDWebServerFileRequest.h │ │ │ │ ├── GCDWebServerFileRequest.m │ │ │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ │ │ ├── GCDWebServerMultiPartFormRequest.m │ │ │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ │ │ └── GCDWebServerURLEncodedFormRequest.m │ │ │ ├── Responses │ │ │ │ ├── GCDWebServerDataResponse.h │ │ │ │ ├── GCDWebServerDataResponse.m │ │ │ │ ├── GCDWebServerErrorResponse.h │ │ │ │ ├── GCDWebServerErrorResponse.m │ │ │ │ ├── GCDWebServerFileResponse.h │ │ │ │ ├── GCDWebServerFileResponse.m │ │ │ │ ├── GCDWebServerStreamedResponse.h │ │ │ │ └── GCDWebServerStreamedResponse.m │ │ │ └── VERSION │ │ ├── SocketRocket │ │ │ ├── LGSRWebSocket.h │ │ │ ├── LGSRWebSocket.m │ │ │ └── LICENSE │ │ ├── XMLReader │ │ │ ├── CTXMLReader.h │ │ │ ├── CTXMLReader.m │ │ │ └── LICENSE │ │ ├── asi-http-request │ │ │ ├── Classes │ │ │ │ ├── CTASIAuthenticationDialog.h │ │ │ │ ├── CTASIAuthenticationDialog.m │ │ │ │ ├── CTASICacheDelegate.h │ │ │ │ ├── CTASIDataCompressor.h │ │ │ │ ├── CTASIDataCompressor.m │ │ │ │ ├── CTASIDataDecompressor.h │ │ │ │ ├── CTASIDataDecompressor.m │ │ │ │ ├── CTASIDownloadCache.h │ │ │ │ ├── CTASIDownloadCache.m │ │ │ │ ├── CTASIFormDataRequest.h │ │ │ │ ├── CTASIFormDataRequest.m │ │ │ │ ├── CTASIHTTPRequest.h │ │ │ │ ├── CTASIHTTPRequest.m │ │ │ │ ├── CTASIHTTPRequestConfig.h │ │ │ │ ├── CTASIHTTPRequestDelegate.h │ │ │ │ ├── CTASIInputStream.h │ │ │ │ ├── CTASIInputStream.m │ │ │ │ ├── CTASINetworkQueue.h │ │ │ │ ├── CTASINetworkQueue.m │ │ │ │ └── CTASIProgressDelegate.h │ │ │ ├── External │ │ │ │ └── Reachability │ │ │ │ │ ├── CTReachability.h │ │ │ │ │ └── CTReachability.m │ │ │ └── LICENSE │ │ ├── objc-guid │ │ │ ├── CTGuid.h │ │ │ ├── CTGuid.m │ │ │ └── LICENSE │ │ └── xswi │ │ │ ├── XMLWriter.h │ │ │ └── XMLWriter.m │ ├── Helpers │ │ ├── AppInfo.h │ │ ├── AppInfo.m │ │ ├── AppStateChangeNotifier.h │ │ ├── AppStateChangeNotifier.m │ │ ├── BlockRunner │ │ │ ├── BlockRunner.h │ │ │ ├── DispatchQueueBlockRunner.h │ │ │ ├── DispatchQueueBlockRunner.m │ │ │ ├── SynchronousBlockRunner.h │ │ │ └── SynchronousBlockRunner.m │ │ ├── ChannelInfo.h │ │ ├── ChannelInfo.m │ │ ├── CommonMacros.h │ │ ├── ConnectError.h │ │ ├── ConnectError.m │ │ ├── ConnectUtil.h │ │ ├── ConnectUtil.m │ │ ├── DeviceServiceReachability.h │ │ ├── DeviceServiceReachability.m │ │ ├── ExternalInputInfo.h │ │ ├── ExternalInputInfo.m │ │ ├── ImageInfo.h │ │ ├── ImageInfo.m │ │ ├── JSONObjectCoding.h │ │ ├── MediaInfo.h │ │ ├── MediaInfo.m │ │ ├── MediaLaunchObject.h │ │ ├── MediaLaunchObject.m │ │ ├── NSDictionary+KeyPredicateSearch.h │ │ ├── NSDictionary+KeyPredicateSearch.m │ │ ├── NSMutableDictionary+NilSafe.h │ │ ├── NSMutableDictionary+NilSafe.m │ │ ├── NSString+Common.h │ │ ├── NSString+Common.m │ │ ├── ProgramInfo.h │ │ ├── ProgramInfo.m │ │ ├── SSDPSocketListener.h │ │ ├── SSDPSocketListener.m │ │ ├── SubscriptionDeduplicator.h │ │ ├── SubscriptionDeduplicator.m │ │ ├── SubtitleInfo.h │ │ ├── SubtitleInfo.m │ │ ├── TextInputStatusInfo.h │ │ └── TextInputStatusInfo.m │ ├── LICENSE │ ├── README.md │ ├── Services │ │ ├── AirPlayService.h │ │ ├── AirPlayService.m │ │ ├── AirPlayService_Private.h │ │ ├── Capabilities │ │ │ ├── Capability.h │ │ │ ├── CapabilityConstants.m │ │ │ ├── ExternalInputControl.h │ │ │ ├── KeyControl.h │ │ │ ├── Launcher.h │ │ │ ├── MediaControl.h │ │ │ ├── MediaPlayer.h │ │ │ ├── MouseControl.h │ │ │ ├── PlayListControl.h │ │ │ ├── PowerControl.h │ │ │ ├── TVControl.h │ │ │ ├── TextInputControl.h │ │ │ ├── ToastControl.h │ │ │ ├── VolumeControl.h │ │ │ └── WebAppLauncher.h │ │ ├── Commands │ │ │ ├── ServiceAsyncCommand.h │ │ │ ├── ServiceAsyncCommand.m │ │ │ ├── ServiceCommand.h │ │ │ ├── ServiceCommand.m │ │ │ ├── ServiceCommandDelegate.h │ │ │ ├── ServiceSubscription.h │ │ │ └── ServiceSubscription.m │ │ ├── Config │ │ │ ├── NetcastTVServiceConfig.h │ │ │ ├── NetcastTVServiceConfig.m │ │ │ ├── ServiceConfig.h │ │ │ ├── ServiceConfig.m │ │ │ ├── ServiceConfigDelegate.h │ │ │ ├── ServiceDescription.h │ │ │ ├── ServiceDescription.m │ │ │ ├── WebOSTVServiceConfig.h │ │ │ └── WebOSTVServiceConfig.m │ │ ├── DIALService.h │ │ ├── DIALService.m │ │ ├── DLNAService.h │ │ ├── DLNAService.m │ │ ├── DLNAService_Private.h │ │ ├── DeviceService.h │ │ ├── DeviceService.m │ │ ├── DeviceServiceDelegate.h │ │ ├── Helpers │ │ │ ├── AirPlayServiceHTTP.h │ │ │ ├── AirPlayServiceHTTP.m │ │ │ ├── AirPlayServiceHTTPKeepAlive.h │ │ │ ├── AirPlayServiceHTTPKeepAlive.m │ │ │ ├── AirPlayServiceHTTP_Private.h │ │ │ ├── AirPlayServiceMirrored.h │ │ │ ├── AirPlayServiceMirrored.m │ │ │ ├── DLNAHTTPServer.h │ │ │ ├── DLNAHTTPServer.m │ │ │ ├── DLNAHTTPServer_Private.h │ │ │ ├── NSObject+FeatureNotSupported_Private.h │ │ │ ├── NSObject+FeatureNotSupported_Private.m │ │ │ ├── WebOSTVServiceMouse.h │ │ │ ├── WebOSTVServiceMouse.m │ │ │ ├── WebOSTVServiceSocketClient.h │ │ │ ├── WebOSTVServiceSocketClient.m │ │ │ ├── WebOSTVServiceSocketClient_Private.h │ │ │ ├── XMLWriter+ConvenienceMethods.h │ │ │ └── XMLWriter+ConvenienceMethods.m │ │ ├── NetcastTVService.h │ │ ├── NetcastTVService.m │ │ ├── NetcastTVService_Private.h │ │ ├── RokuService.h │ │ ├── RokuService.m │ │ ├── RokuService_Private.h │ │ ├── Sessions │ │ │ ├── AirPlayWebAppSession.h │ │ │ ├── AirPlayWebAppSession.m │ │ │ ├── LaunchSession.h │ │ │ ├── LaunchSession.m │ │ │ ├── WebAppSession.h │ │ │ ├── WebAppSession.m │ │ │ ├── WebAppSessionDelegate.h │ │ │ ├── WebOSWebAppSession.h │ │ │ ├── WebOSWebAppSession.m │ │ │ └── WebOSWebAppSession_Private.h │ │ ├── WebOSTVService.h │ │ ├── WebOSTVService.m │ │ └── WebOSTVService_Private.h │ └── en.lproj │ │ └── ConnectSDK.strings └── modules │ ├── firetv │ ├── .gitignore │ ├── Capabilities │ │ ├── FireTVCapabilityMixin.h │ │ ├── FireTVCapabilityMixin.m │ │ ├── FireTVMediaControl.h │ │ ├── FireTVMediaControl.m │ │ ├── FireTVMediaPlayer.h │ │ └── FireTVMediaPlayer.m │ ├── Discovery │ │ ├── FireTVDiscoveryProvider.h │ │ ├── FireTVDiscoveryProvider.m │ │ └── FireTVDiscoveryProvider_Private.h │ ├── FireTVAcceptanceTests │ │ └── FireTVAcceptanceTests.m │ ├── FireTVIntegrationTests │ │ └── FireTVIntegrationTests.m │ ├── FireTVService.h │ ├── FireTVService.m │ ├── FireTVTests │ │ ├── Capabilities │ │ │ ├── FireTVMediaControlTests.m │ │ │ └── FireTVMediaPlayerTests.m │ │ ├── Discovery │ │ │ └── FireTVDiscoveryProviderTests.m │ │ ├── FireTVServiceTests.m │ │ ├── XCTestCase+TaskTests.h │ │ └── XCTestCase+TaskTests.m │ ├── Frameworks │ │ ├── AmazonFling.framework │ │ │ ├── AmazonFling │ │ │ ├── Headers │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── AmazonFling │ │ │ │ └── Headers │ │ │ │ │ ├── AmazonFlingVersion.h │ │ │ │ │ ├── DiscoveryController.h │ │ │ │ │ ├── InstallDiscoveryController.h │ │ │ │ │ ├── MediaPlayerInfo.h │ │ │ │ │ ├── MediaPlayerStatus.h │ │ │ │ │ ├── RemoteInstallService.h │ │ │ │ │ └── RemoteMediaPlayer.h │ │ │ │ └── Current │ │ ├── Bolts.framework │ │ │ ├── Bolts │ │ │ ├── Headers │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Bolts │ │ │ │ └── Headers │ │ │ │ │ ├── BFAppLink.h │ │ │ │ │ ├── BFAppLinkNavigation.h │ │ │ │ │ ├── BFAppLinkResolving.h │ │ │ │ │ ├── BFAppLinkReturnToRefererController.h │ │ │ │ │ ├── BFAppLinkReturnToRefererView.h │ │ │ │ │ ├── BFAppLinkTarget.h │ │ │ │ │ ├── BFExecutor.h │ │ │ │ │ ├── BFMeasurementEvent.h │ │ │ │ │ ├── BFTask.h │ │ │ │ │ ├── BFTaskCompletionSource.h │ │ │ │ │ ├── BFURL.h │ │ │ │ │ ├── BFWebViewAppLinkResolver.h │ │ │ │ │ ├── Bolts.h │ │ │ │ │ └── BoltsVersion.h │ │ │ │ └── Current │ │ └── _README.txt │ ├── LICENSE │ └── README.asciidoc │ └── google-cast │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── CastDiscoveryProvider.h │ ├── CastDiscoveryProvider.m │ ├── CastService.h │ ├── CastService.m │ ├── CastServiceChannel.h │ ├── CastServiceChannel.m │ ├── CastService_Private.h │ ├── CastWebAppSession.h │ ├── CastWebAppSession.m │ ├── GoogleCast.framework │ ├── GoogleCast │ ├── GoogleCastResources.bundle │ │ ├── af.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ar.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── bg.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── bn.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ca.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── cs.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── da.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── de.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── el.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── en.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── en_GB.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── en_US.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── es.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── es_419.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── et.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── fa.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── fi.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── fil.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── fr.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── hi.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── hr.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── hu.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── hy.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── id.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── is.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── it.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── iw.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ja.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ka.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── km.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ko.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── lo.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── lt.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── lv.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── mk.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── mn.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── mr.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ms.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── my.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ne.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── nl.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── no.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── pl.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── pt.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── pt_PT.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ro.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ru.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── si.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── sk.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── sl.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── sr.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── sv.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── sw.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── ta.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── th.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── tr.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── uk.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── vi.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ ├── zh_CN.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib │ │ │ │ └── runtime.nib │ │ └── zh_TW.lproj │ │ │ └── GCKGuestModePairingViewController.nib │ │ │ ├── objects-8.0+.nib │ │ │ ├── objects.nib │ │ │ └── runtime.nib │ ├── Headers │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── GoogleCast │ │ ├── Headers │ │ │ ├── GCKApplicationMetadata.h │ │ │ ├── GCKCastChannel.h │ │ │ ├── GCKCastContext.h │ │ │ ├── GCKColor.h │ │ │ ├── GCKCommon.h │ │ │ ├── GCKDefines.h │ │ │ ├── GCKDevice.h │ │ │ ├── GCKDeviceManager.h │ │ │ ├── GCKDeviceScanner.h │ │ │ ├── GCKError.h │ │ │ ├── GCKFilterCriteria.h │ │ │ ├── GCKFrameworkResources.h │ │ │ ├── GCKGenericChannel.h │ │ │ ├── GCKGlobalFlags.h │ │ │ ├── GCKImage.h │ │ │ ├── GCKJSONUtils.h │ │ │ ├── GCKLaunchOptions.h │ │ │ ├── GCKLogger.h │ │ │ ├── GCKMediaCommon.h │ │ │ ├── GCKMediaControlChannel.h │ │ │ ├── GCKMediaInformation.h │ │ │ ├── GCKMediaMetadata.h │ │ │ ├── GCKMediaQueueItem.h │ │ │ ├── GCKMediaStatus.h │ │ │ ├── GCKMediaTextTrackStyle.h │ │ │ ├── GCKMediaTrack.h │ │ │ ├── GCKNSDictionary+TypedValueLookup.h │ │ │ ├── GCKSenderApplicationInfo.h │ │ │ ├── GoogleCast.h │ │ │ ├── NSDictionary+GCKAdditions.h │ │ │ └── UIImage+GCKAdditions.h │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current │ ├── GoogleCastTests │ ├── CastServiceTests.m │ └── CastWebAppSessionTests.m │ ├── LICENSE │ └── README.md ├── Fetch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Fetch.xcscheme │ ├── PutioKit.xcscheme │ └── SRBarcodeScanner.xcscheme ├── Fetch.xcworkspace └── contents.xcworkspacedata ├── Fetch ├── 1Password.xcassets │ ├── onepassword-button-light.imageset │ │ ├── Contents.json │ │ ├── onepassword-button-light.png │ │ ├── onepassword-button-light@2x.png │ │ └── onepassword-button-light@3x.png │ ├── onepassword-button-light.pdf │ ├── onepassword-button.imageset │ │ ├── Contents.json │ │ ├── onepassword-button.png │ │ ├── onepassword-button@2x.png │ │ └── onepassword-button@3x.png │ ├── onepassword-button.pdf │ ├── onepassword-extension-light.imageset │ │ ├── Contents.json │ │ ├── onepassword-extension-light@2x~compact.png │ │ ├── onepassword-extension-light@2x~regular.png │ │ ├── onepassword-extension-light@3x~compact.png │ │ ├── onepassword-extension-light~compact.png │ │ └── onepassword-extension-light~regular.png │ ├── onepassword-extension-light~compact.pdf │ ├── onepassword-extension-light~regular.pdf │ ├── onepassword-extension.imageset │ │ ├── Contents.json │ │ ├── onepassword-extension@2x~compact.png │ │ ├── onepassword-extension@2x~regular.png │ │ ├── onepassword-extension@3x~compact.png │ │ ├── onepassword-extension~compact.png │ │ └── onepassword-extension~regular.png │ ├── onepassword-extension~compact.pdf │ ├── onepassword-extension~regular.pdf │ ├── onepassword-navbar-light.imageset │ │ ├── Contents.json │ │ ├── onepassword-navbar-light.png │ │ ├── onepassword-navbar-light@2x.png │ │ └── onepassword-navbar-light@3x.png │ ├── onepassword-navbar-light.pdf │ ├── onepassword-navbar.imageset │ │ ├── Contents.json │ │ ├── onepassword-navbar.png │ │ ├── onepassword-navbar@2x.png │ │ └── onepassword-navbar@3x.png │ ├── onepassword-navbar.pdf │ ├── onepassword-toolbar-light.imageset │ │ ├── Contents.json │ │ ├── onepassword-toolbar-light.png │ │ ├── onepassword-toolbar-light@2x.png │ │ └── onepassword-toolbar-light@3x.png │ ├── onepassword-toolbar-light.pdf │ ├── onepassword-toolbar.imageset │ │ ├── Contents.json │ │ ├── onepassword-toolbar.png │ │ ├── onepassword-toolbar@2x.png │ │ └── onepassword-toolbar@3x.png │ └── onepassword-toolbar.pdf ├── ActivityTableViewController.swift ├── AddFeedTableViewController.swift ├── AddFilesViewController.swift ├── AllFilesTableViewController.swift ├── AnswerViewController.swift ├── AppDelegate.swift ├── CastButton.swift ├── CastConnectionState.swift ├── CastFrameworkAssets.xcassets │ ├── cast_off.imageset │ │ ├── Contents.json │ │ ├── cast_off@1x.png │ │ ├── cast_off@2x.png │ │ └── cast_off@3x.png │ ├── cast_on.imageset │ │ ├── Contents.json │ │ ├── cast_on@1x.png │ │ ├── cast_on@2x.png │ │ └── cast_on@3x.png │ ├── cast_on0.imageset │ │ ├── Contents.json │ │ ├── cast_on0@1x.png │ │ ├── cast_on0@2x.png │ │ └── cast_on0@3x.png │ ├── cast_on1.imageset │ │ ├── Contents.json │ │ ├── cast_on1@1x.png │ │ ├── cast_on1@2x.png │ │ └── cast_on1@3x.png │ ├── cast_on2.imageset │ │ ├── Contents.json │ │ ├── cast_on2@1x.png │ │ ├── cast_on2@2x.png │ │ └── cast_on2@3x.png │ ├── check.imageset │ │ ├── Contents.json │ │ ├── check@1x.png │ │ ├── check@2x.png │ │ └── check@3x.png │ ├── cling.imageset │ │ ├── Contents.json │ │ ├── cling@1x.png │ │ ├── cling@2x.png │ │ └── cling@3x.png │ ├── icon_music_outline.imageset │ │ ├── Contents.json │ │ ├── icon_music_outline@1x.png │ │ ├── icon_music_outline@2x.png │ │ └── icon_music_outline@3x.png │ ├── icon_music_solid.imageset │ │ ├── Contents.json │ │ ├── icon_music_solid@1x.png │ │ ├── icon_music_solid@2x.png │ │ └── icon_music_solid@3x.png │ ├── icon_play_outline.imageset │ │ ├── Contents.json │ │ ├── icon_play_outline@1x.png │ │ ├── icon_play_outline@2x.png │ │ └── icon_play_outline@3x.png │ ├── icon_play_solid.imageset │ │ ├── Contents.json │ │ ├── icon_play_solid@1x.png │ │ ├── icon_play_solid@2x.png │ │ └── icon_play_solid@3x.png │ ├── icon_settings_outline.imageset │ │ ├── Contents.json │ │ ├── icon_settings_outline@1x.png │ │ ├── icon_settings_outline@2x.png │ │ └── icon_settings_outline@3x.png │ ├── icon_settings_solid.imageset │ │ ├── Contents.json │ │ ├── icon_settings_solid@1x.png │ │ ├── icon_settings_solid@2x.png │ │ └── icon_settings_solid@3x.png │ ├── icon_volume0.imageset │ │ ├── Contents.json │ │ ├── icon_volume0@1x.png │ │ ├── icon_volume0@2x.png │ │ └── icon_volume0@3x.png │ ├── icon_volume1.imageset │ │ ├── Contents.json │ │ ├── icon_volume1@1x.png │ │ ├── icon_volume1@2x.png │ │ └── icon_volume1@3x.png │ ├── icon_volume2.imageset │ │ ├── Contents.json │ │ ├── icon_volume2@1x.png │ │ ├── icon_volume2@2x.png │ │ └── icon_volume2@3x.png │ ├── icon_volume3.imageset │ │ ├── Contents.json │ │ ├── icon_volume3@1x.png │ │ ├── icon_volume3@2x.png │ │ └── icon_volume3@3x.png │ ├── media_left.imageset │ │ ├── Contents.json │ │ ├── media_left@1x.png │ │ ├── media_left@2x.png │ │ └── media_left@3x.png │ ├── media_next.imageset │ │ ├── Contents.json │ │ ├── media_next@1x.png │ │ ├── media_next@2x.png │ │ └── media_next@3x.png │ ├── media_pause.imageset │ │ ├── Contents.json │ │ ├── media_pause@1x.png │ │ ├── media_pause@2x.png │ │ └── media_pause@3x.png │ ├── media_play.imageset │ │ ├── Contents.json │ │ ├── media_play@1x.png │ │ ├── media_play@2x.png │ │ └── media_play@3x.png │ ├── media_prev.imageset │ │ ├── Contents.json │ │ ├── media_prev@1x.png │ │ ├── media_prev@2x.png │ │ └── media_prev@3x.png │ └── media_right.imageset │ │ ├── Contents.json │ │ ├── media_right@1x.png │ │ ├── media_right@2x.png │ │ └── media_right@3x.png ├── CastHandler.swift ├── CastHandlerDelegate.swift ├── CastRemoteViewController.swift ├── CastService+PlayFileWithCustomInfo.swift ├── DetailViewController.swift ├── DirectoryTableViewController.swift ├── Downloader.swift ├── Downloads.storyboard ├── DownloadsTableViewController.swift ├── FAQTableViewController.swift ├── FAQs.storyboard ├── Fetch-Bridging-Header.h ├── FetchAlertController.swift ├── FetchMediaControls.swift ├── FilesNavViewController.swift ├── FilesTabViewController.swift ├── FilesTableViewController.swift ├── FolderSelectTableViewController.swift ├── FolderSelectorNavViewController.swift ├── GradientOverlay.swift ├── ImageHandlerViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon@2x.png │ │ ├── icon@3x.png │ │ ├── ipad.png │ │ ├── ipad@2x.png │ │ ├── is2@2x.png │ │ ├── is2@3x.png │ │ ├── ispot@2x.png │ │ ├── ispot@3x.png │ │ ├── pad-s.png │ │ ├── pad-s@2x.png │ │ ├── pad-spot.png │ │ ├── pad-spot@2x.png │ │ └── pro.png │ ├── Contents.json │ ├── Files-Active.imageset │ │ ├── Contents.json │ │ └── Files-Active.pdf │ ├── Files.imageset │ │ ├── Contents.json │ │ └── Files.pdf │ ├── Image.imageset │ │ ├── Contents.json │ │ └── image.pdf │ ├── arrow.imageset │ │ ├── Contents.json │ │ └── arrow.pdf │ ├── audio-new.imageset │ │ ├── Contents.json │ │ └── audio-new.pdf │ ├── audio.imageset │ │ ├── Contents.json │ │ └── music.pdf │ ├── cloud-active.imageset │ │ ├── Contents.json │ │ └── cloudactive2.pdf │ ├── cloud.imageset │ │ ├── Contents.json │ │ └── cloud2.pdf │ ├── document-new.imageset │ │ ├── Contents.json │ │ └── document-new.pdf │ ├── document.imageset │ │ ├── Contents.json │ │ └── document.pdf │ ├── done.imageset │ │ ├── Contents.json │ │ ├── done@1x.png │ │ ├── done@2x.png │ │ └── done@3x.png │ ├── down-chevron.imageset │ │ ├── Contents.json │ │ └── down-chevron.pdf │ ├── episode.imageset │ │ ├── Contents.json │ │ ├── episode@1x.png │ │ ├── episode@2x.png │ │ └── episode@3x.png │ ├── f30.imageset │ │ ├── Contents.json │ │ └── ICONS 2.pdf │ ├── fetch-cast-1.imageset │ │ ├── Contents.json │ │ └── fetch-cast-1.pdf │ ├── fetch-cast-2.imageset │ │ ├── Contents.json │ │ └── fetch-cast-2.pdf │ ├── fetch-cast-3.imageset │ │ ├── Contents.json │ │ └── fetch-cast-3.pdf │ ├── fetch-pause.imageset │ │ ├── Contents.json │ │ └── ICONS 1.pdf │ ├── fetch-play.imageset │ │ ├── Contents.json │ │ └── ICONS 1 1.pdf │ ├── fetch-thumb-active.imageset │ │ ├── Contents.json │ │ └── active.pdf │ ├── fetch-thumb.imageset │ │ ├── Contents.json │ │ └── thumb.pdf │ ├── fetch-tv.imageset │ │ ├── Contents.json │ │ └── fetch-tv.pdf │ ├── folder.imageset │ │ ├── Contents.json │ │ └── folder.pdf │ ├── image-new.imageset │ │ ├── Contents.json │ │ └── image-new.pdf │ ├── indicator.imageset │ │ ├── Contents.json │ │ └── indicator.pdf │ ├── login-bg.imageset │ │ ├── Contents.json │ │ ├── ipad.png │ │ ├── ipad@2x.png │ │ ├── iphone@1x.png │ │ ├── iphone@2x.png │ │ └── iphone@3x.png │ ├── new-star.imageset │ │ ├── Contents.json │ │ └── new.pdf │ ├── pageFilesFile.imageset │ │ ├── Contents.json │ │ └── file.pdf │ ├── play.imageset │ │ ├── Contents.json │ │ ├── play@1x.png │ │ ├── play@2x.png │ │ └── play@3x.png │ ├── poster.imageset │ │ ├── Contents.json │ │ ├── poster.png │ │ ├── poster@2x.png │ │ └── poster@3x.png │ ├── r30.imageset │ │ ├── Contents.json │ │ └── ICONS 2 1.pdf │ ├── search-active.imageset │ │ ├── Contents.json │ │ └── search2-active.pdf │ ├── search.imageset │ │ ├── Contents.json │ │ └── search2.pdf │ ├── settings.imageset │ │ ├── 1432172457_Streamline-75.pdf │ │ └── Contents.json │ ├── startup.imageset │ │ ├── Contents.json │ │ ├── startup.png │ │ ├── startup@2x.png │ │ └── startup@3x.png │ ├── tick.imageset │ │ ├── Contents.json │ │ └── tick.pdf │ ├── tmdb.imageset │ │ ├── Contents.json │ │ ├── tmdb@1x.png │ │ ├── tmdb@2x.png │ │ └── tmdb@3x.png │ ├── video-new.imageset │ │ ├── Contents.json │ │ └── video-new.pdf │ ├── video.imageset │ │ ├── Contents.json │ │ └── video.pdf │ ├── vlc-ipad.imageset │ │ ├── Contents.json │ │ ├── vlc-ipad.png │ │ ├── vlc-ipad@2x.png │ │ └── vlc-ipad@3x.png │ └── vlc-iphone.imageset │ │ ├── Contents.json │ │ ├── vlc-iphone.png │ │ ├── vlc-iphone@2x.png │ │ └── vlc-iphone@3x.png ├── Info.plist ├── Interfaces │ ├── Activity.storyboard │ ├── CastRemote.xib │ ├── FetchMediaControls.xib │ ├── FirstRun.storyboard │ ├── FolderPicker.storyboard │ ├── Main.storyboard │ ├── More.storyboard │ ├── MoveFiles.storyboard │ ├── TVMovies.storyboard │ ├── Transfers.storyboard │ └── WhatsNewViewController.xib ├── Launch Screen.storyboard ├── LoaderView.swift ├── LoginViewController.swift ├── MediaPlayerViewController.swift ├── MoreTableViewController.swift ├── MoveFilesTableViewController.swift ├── MovieCollectionViewController.swift ├── NSObject+Delay.swift ├── NoResultsView.swift ├── OpenInVLC.swift ├── PageViewController.swift ├── PlayerDelegate.swift ├── PosterCollectionViewCell.swift ├── PosterCollectionViewController.swift ├── QRScannerViewController.swift ├── QuickAction.swift ├── RSS.storyboard ├── RSSTableViewController.swift ├── SearchResultsViewController.swift ├── SeasonSectionHeaderCollectionReusableView.swift ├── Settings.bundle │ ├── Acknowledgements.plist │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── SettingsNavViewController.swift ├── SettingsTableViewController.swift ├── Sharing.storyboard ├── TVCollectionViewController.swift ├── TVMovieLoading.xib ├── TVMovieLoadingView.swift ├── TVMovieViewController.swift ├── TVShowCollectionViewCell.swift ├── TVShowCollectionViewController.swift ├── TextViewController.swift ├── Transfer.swift ├── TransferSplitViewController.swift ├── TransfersDetailTableViewController.swift ├── TransfersTableViewController.swift ├── UIColor+Colors.swift ├── UIView+FadeAndHide.swift ├── WhatsNewViewController.swift ├── WhichFolderView.swift └── success.wav ├── FetchUITests ├── FetchUITests.swift ├── Info.plist └── SnapshotHelper.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── PutioKit ├── Event.swift ├── Events.swift ├── Feed.swift ├── Feeds.swift ├── File.swift ├── Files.swift ├── Genre.swift ├── Info.plist ├── Keychain + Hotfix.swift ├── MediaType.swift ├── Movie.swift ├── NoArtwork.xib ├── NoArtworkView.swift ├── PushNotifications.swift ├── Putio.swift ├── PutioDelegate.swift ├── PutioKit.h ├── Search.swift ├── SearchDelegate.swift ├── TMDB.swift ├── TMDBSearch.swift ├── TVEpisode.swift ├── TVSeason.swift ├── TVShow.swift ├── TVShowDelegate.swift └── Videos.swift ├── README.md ├── SRBarcodeScanner ├── Info.plist ├── SRBarcodeScanner.h ├── SRBarcodeScanner.swift └── SRBarcodeScannerDelegate.swift └── prepare /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /Connect-SDK-iOS/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/AUTHORS.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/CHANGELOG.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/CONTRIBUTING.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.podspec -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/ConnectSDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/ConnectSDK.xcscheme -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/ConnectSDKTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/ConnectSDKTests.xcscheme -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDK.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme -------------------------------------------------------------------------------- /Connect-SDK-iOS/ConnectSDKDefaultPlatforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/ConnectSDKDefaultPlatforms.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/README.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/.gitignore -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/CONTRIBUTING.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDK-Prefix.pch -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDK.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/AirPlayServiceAcceptanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/AirPlayServiceAcceptanceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/DLNAServiceAcceptanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/DLNAServiceAcceptanceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKAcceptanceTests/Info.plist -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/ConnectSDKIntegrationTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/ConnectSDKIntegrationTests-Prefix.pch -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/EXPMatchers+matchRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/EXPMatchers+matchRegex.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/EXPMatchers+matchRegex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/EXPMatchers+matchRegex.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Expecta: -------------------------------------------------------------------------------- 1 | Versions/Current/Expecta -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/LICENSE: -------------------------------------------------------------------------------- 1 | Versions/Current/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Versions/A/Headers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Versions/A/Headers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Versions/A/Headers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Expecta.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Specta.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Specta.framework/LICENSE: -------------------------------------------------------------------------------- 1 | Versions/Current/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Specta.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Specta.framework/Specta: -------------------------------------------------------------------------------- 1 | Versions/Current/Specta -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Frameworks/Specta.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/Info.plist -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/OCMStubRecorder+SpectaAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/OCMStubRecorder+SpectaAsync.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/OCMStubRecorder+SpectaAsync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/OCMStubRecorder+SpectaAsync.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKIntegrationTests/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKIntegrationTests/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/ConnectSDKDefaultPlatformsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/ConnectSDKDefaultPlatformsTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/ConnectSDKTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/ConnectSDKTests-Prefix.pch -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Discovery/DiscoveryManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Discovery/DiscoveryManagerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Discovery/Providers/SSDPDiscoveryProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Discovery/Providers/SSDPDiscoveryProviderTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Discovery/Providers/ZeroConfDiscoveryProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Discovery/Providers/ZeroConfDiscoveryProviderTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/License.txt -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/OCMock: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMock -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/Versions/A/OCMock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/Versions/A/OCMock -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OCMock.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/OHHTTPStubs: -------------------------------------------------------------------------------- 1 | Versions/Current/OHHTTPStubs -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Frameworks/OHHTTPStubs.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/AppStateChangeNotifierTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/AppStateChangeNotifierTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/BlockRunnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/BlockRunnerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/DispatchQueueBlockRunnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/DispatchQueueBlockRunnerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/SynchronousBlockRunnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/BlockRunner/SynchronousBlockRunnerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/MediaInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/MediaInfoTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/NSDictionary+KeyPredicateSearchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/NSDictionary+KeyPredicateSearchTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/NSMutableDictionary+NilSafeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/NSMutableDictionary+NilSafeTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/SubscriptionDeduplicatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/SubscriptionDeduplicatorTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Helpers/SubtitleInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Helpers/SubtitleInfoTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/NSInvocation+ObjectGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/NSInvocation+ObjectGetter.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/NSInvocation+ObjectGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/NSInvocation+ObjectGetter.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/OCMArg+ArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/OCMArg+ArgumentCaptor.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/OCMArg+ArgumentCaptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/OCMArg+ArgumentCaptor.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/OCMStubRecorder+XCTestExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/OCMStubRecorder+XCTestExpectation.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/OCMStubRecorder+XCTestExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/OCMStubRecorder+XCTestExpectation.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/AirPlayServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/AirPlayServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Config/ServiceDescriptionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Config/ServiceDescriptionTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/DLNAServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/DLNAServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/AirPlayServiceHTTPKeepAliveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/AirPlayServiceHTTPKeepAliveTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/AirPlayServiceHTTPTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/AirPlayServiceHTTPTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/DLNAHTTPServerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/DLNAHTTPServerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/WebOSTVServiceSocketClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Helpers/WebOSTVServiceSocketClientTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/NetcastTVServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/NetcastTVServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/RokuServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/RokuServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Sessions/WebAppSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Sessions/WebAppSessionTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/Sessions/WebOSWebAppSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/Sessions/WebOSWebAppSessionTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/WebOSTVServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/WebOSTVServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getmute_response_sonos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getmute_response_sonos.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getmute_response_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getmute_response_xbox.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getpositioninfo_response_sonos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getpositioninfo_response_sonos.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getpositioninfo_response_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getpositioninfo_response_xbox.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/gettransportinfo_response_sonos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/gettransportinfo_response_sonos.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/gettransportinfo_response_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/gettransportinfo_response_xbox.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getvolume_response_sonos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getvolume_response_sonos.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/getvolume_response_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/getvolume_response_xbox.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/upnperror_response_sonos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/upnperror_response_sonos.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/Services/upnperror_response_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/Services/upnperror_response_xbox.xml -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/XCTestCase+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/XCTestCase+Common.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/ConnectSDKTests/XCTestCase+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/ConnectSDKTests/XCTestCase+Common.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/ConnectableDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/ConnectableDevice.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/ConnectableDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/ConnectableDevice.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/ConnectableDeviceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/ConnectableDeviceDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/ConnectableDeviceStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/ConnectableDeviceStore.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/DefaultConnectableDeviceStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/DefaultConnectableDeviceStore.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/DefaultConnectableDeviceStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/DefaultConnectableDeviceStore.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/DevicePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/DevicePicker.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/DevicePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/DevicePicker.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Devices/DevicePickerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Devices/DevicePickerDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/CapabilityFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/CapabilityFilter.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/CapabilityFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/CapabilityFilter.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryManager.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryManager.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryManagerDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryManager_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryProvider.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryProvider.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/DiscoveryProviderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/DiscoveryProviderDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/SSDPDiscoveryProvider_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Discovery/Providers/ZeroConfDiscoveryProvider_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServer.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServer.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerConnection.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerConnection.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerFunctions.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerFunctions.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerPrivate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerResponse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Core/GCDWebServerResponse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerDataRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerDataRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerFileRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerFileRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerFileRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerFileRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerDataResponse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerDataResponse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerErrorResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerErrorResponse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerErrorResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerErrorResponse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerFileResponse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerFileResponse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerStreamedResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerStreamedResponse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerStreamedResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/Responses/GCDWebServerStreamedResponse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/GCDWebServer/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/GCDWebServer/VERSION -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/SocketRocket/LGSRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/SocketRocket/LGSRWebSocket.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/SocketRocket/LGSRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/SocketRocket/LGSRWebSocket.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/SocketRocket/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/XMLReader/CTXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/XMLReader/CTXMLReader.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/XMLReader/CTXMLReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/XMLReader/CTXMLReader.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/XMLReader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/XMLReader/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIAuthenticationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIAuthenticationDialog.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIAuthenticationDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIAuthenticationDialog.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASICacheDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASICacheDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataCompressor.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataCompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataCompressor.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataDecompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataDecompressor.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataDecompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDataDecompressor.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDownloadCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDownloadCache.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDownloadCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIDownloadCache.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIFormDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIFormDataRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIFormDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIFormDataRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequest.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequest.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequestConfig.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIHTTPRequestDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIInputStream.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIInputStream.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASINetworkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASINetworkQueue.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASINetworkQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASINetworkQueue.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIProgressDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/Classes/CTASIProgressDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/External/Reachability/CTReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/External/Reachability/CTReachability.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/External/Reachability/CTReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/External/Reachability/CTReachability.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/asi-http-request/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/asi-http-request/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/objc-guid/CTGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/objc-guid/CTGuid.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/objc-guid/CTGuid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/objc-guid/CTGuid.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/objc-guid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/objc-guid/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/xswi/XMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/xswi/XMLWriter.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Frameworks/xswi/XMLWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Frameworks/xswi/XMLWriter.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/AppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/AppInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/AppInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/AppInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/AppStateChangeNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/AppStateChangeNotifier.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/AppStateChangeNotifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/AppStateChangeNotifier.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/BlockRunner/BlockRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/BlockRunner/BlockRunner.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/BlockRunner/DispatchQueueBlockRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/BlockRunner/DispatchQueueBlockRunner.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/BlockRunner/DispatchQueueBlockRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/BlockRunner/DispatchQueueBlockRunner.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/BlockRunner/SynchronousBlockRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/BlockRunner/SynchronousBlockRunner.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/BlockRunner/SynchronousBlockRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/BlockRunner/SynchronousBlockRunner.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ChannelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ChannelInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ChannelInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ChannelInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/CommonMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/CommonMacros.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ConnectError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ConnectError.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ConnectError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ConnectError.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ConnectUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ConnectUtil.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ConnectUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ConnectUtil.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/DeviceServiceReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/DeviceServiceReachability.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/DeviceServiceReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/DeviceServiceReachability.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ExternalInputInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ExternalInputInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ExternalInputInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ExternalInputInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ImageInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ImageInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ImageInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/JSONObjectCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/JSONObjectCoding.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/MediaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/MediaInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/MediaInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/MediaInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/MediaLaunchObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/MediaLaunchObject.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/MediaLaunchObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/MediaLaunchObject.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSDictionary+KeyPredicateSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSDictionary+KeyPredicateSearch.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSDictionary+KeyPredicateSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSDictionary+KeyPredicateSearch.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSMutableDictionary+NilSafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSMutableDictionary+NilSafe.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSMutableDictionary+NilSafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSMutableDictionary+NilSafe.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSString+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSString+Common.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/NSString+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/NSString+Common.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ProgramInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ProgramInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/ProgramInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/ProgramInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SSDPSocketListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SSDPSocketListener.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SSDPSocketListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SSDPSocketListener.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SubscriptionDeduplicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SubscriptionDeduplicator.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SubscriptionDeduplicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SubscriptionDeduplicator.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SubtitleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SubtitleInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/SubtitleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/SubtitleInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/TextInputStatusInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/TextInputStatusInfo.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Helpers/TextInputStatusInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Helpers/TextInputStatusInfo.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/README.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/AirPlayService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/AirPlayService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/AirPlayService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/AirPlayService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/AirPlayService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/AirPlayService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/Capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/Capability.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/CapabilityConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/CapabilityConstants.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/ExternalInputControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/ExternalInputControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/KeyControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/KeyControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/Launcher.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/MediaControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/MediaControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/MediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/MediaPlayer.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/MouseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/MouseControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/PlayListControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/PlayListControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/PowerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/PowerControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/TVControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/TVControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/TextInputControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/TextInputControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/ToastControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/ToastControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/VolumeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/VolumeControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Capabilities/WebAppLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Capabilities/WebAppLauncher.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceAsyncCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceAsyncCommand.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceAsyncCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceAsyncCommand.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceCommand.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceCommand.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceCommandDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceCommandDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceSubscription.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Commands/ServiceSubscription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Commands/ServiceSubscription.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/NetcastTVServiceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/NetcastTVServiceConfig.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/NetcastTVServiceConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/NetcastTVServiceConfig.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/ServiceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/ServiceConfig.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/ServiceConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/ServiceConfig.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/ServiceConfigDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/ServiceConfigDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/ServiceDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/ServiceDescription.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/ServiceDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/ServiceDescription.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/WebOSTVServiceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/WebOSTVServiceConfig.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Config/WebOSTVServiceConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Config/WebOSTVServiceConfig.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DIALService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DIALService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DIALService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DIALService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DLNAService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DLNAService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DLNAService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DLNAService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DLNAService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DLNAService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DeviceService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DeviceService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DeviceService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DeviceService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/DeviceServiceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/DeviceServiceDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTPKeepAlive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTPKeepAlive.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTPKeepAlive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTPKeepAlive.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceHTTP_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceMirrored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceMirrored.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceMirrored.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/AirPlayServiceMirrored.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/DLNAHTTPServer_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/NSObject+FeatureNotSupported_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/NSObject+FeatureNotSupported_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/NSObject+FeatureNotSupported_Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/NSObject+FeatureNotSupported_Private.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceMouse.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceMouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceMouse.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/WebOSTVServiceSocketClient_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/XMLWriter+ConvenienceMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/XMLWriter+ConvenienceMethods.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Helpers/XMLWriter+ConvenienceMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Helpers/XMLWriter+ConvenienceMethods.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/NetcastTVService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/NetcastTVService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/NetcastTVService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/NetcastTVService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/NetcastTVService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/NetcastTVService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/RokuService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/RokuService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/RokuService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/RokuService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/RokuService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/RokuService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/AirPlayWebAppSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/AirPlayWebAppSession.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/AirPlayWebAppSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/AirPlayWebAppSession.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/LaunchSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/LaunchSession.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/LaunchSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/LaunchSession.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebAppSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebAppSession.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebAppSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebAppSession.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebAppSessionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebAppSessionDelegate.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/Sessions/WebOSWebAppSession_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/WebOSTVService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/WebOSTVService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/WebOSTVService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/WebOSTVService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/Services/WebOSTVService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/Services/WebOSTVService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/core/en.lproj/ConnectSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/core/en.lproj/ConnectSDK.strings -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/.gitignore: -------------------------------------------------------------------------------- 1 | #*.framework 2 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVCapabilityMixin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVCapabilityMixin.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVCapabilityMixin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVCapabilityMixin.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaControl.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaControl.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaPlayer.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Capabilities/FireTVMediaPlayer.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Discovery/FireTVDiscoveryProvider_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVAcceptanceTests/FireTVAcceptanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVAcceptanceTests/FireTVAcceptanceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVIntegrationTests/FireTVIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVIntegrationTests/FireTVIntegrationTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/Capabilities/FireTVMediaControlTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/Capabilities/FireTVMediaControlTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/Capabilities/FireTVMediaPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/Capabilities/FireTVMediaPlayerTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/Discovery/FireTVDiscoveryProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/Discovery/FireTVDiscoveryProviderTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/FireTVServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/FireTVServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/XCTestCase+TaskTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/XCTestCase+TaskTests.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/FireTVTests/XCTestCase+TaskTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/FireTVTests/XCTestCase+TaskTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/AmazonFling.framework/AmazonFling: -------------------------------------------------------------------------------- 1 | Versions/Current/AmazonFling -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/AmazonFling.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/AmazonFling.framework/Versions/A/AmazonFling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/AmazonFling.framework/Versions/A/AmazonFling -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/AmazonFling.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Bolts: -------------------------------------------------------------------------------- 1 | ./Versions/A/Bolts -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Headers: -------------------------------------------------------------------------------- 1 | ./Versions/A/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Bolts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Bolts -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFAppLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFAppLink.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFExecutor.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFTask.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BFURL.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/Bolts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/Bolts.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/A/Headers/BoltsVersion.h: -------------------------------------------------------------------------------- 1 | #define BOLTS_VERSION @"1.1.3" 2 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/Bolts.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | ./A -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/Frameworks/_README.txt: -------------------------------------------------------------------------------- 1 | Please place external frameworks in this directory. 2 | -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/firetv/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/firetv/README.asciidoc -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/.gitignore -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CONTRIBUTING.md -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastDiscoveryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastDiscoveryProvider.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastDiscoveryProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastDiscoveryProvider.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastService.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastService.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastServiceChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastServiceChannel.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastServiceChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastServiceChannel.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastService_Private.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastWebAppSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastWebAppSession.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/CastWebAppSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/CastWebAppSession.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/GoogleCast: -------------------------------------------------------------------------------- 1 | Versions/Current/GoogleCast -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/GoogleCast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/GoogleCast -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKColor.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKCommon.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKDefines.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKDevice.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKError.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKImage.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKJSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKJSONUtils.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKLogger.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKMediaTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GCKMediaTrack.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GoogleCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Headers/GoogleCast.h -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCast.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCastTests/CastServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCastTests/CastServiceTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/GoogleCastTests/CastWebAppSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/GoogleCastTests/CastWebAppSessionTests.m -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/LICENSE -------------------------------------------------------------------------------- /Connect-SDK-iOS/modules/google-cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Connect-SDK-iOS/modules/google-cast/README.md -------------------------------------------------------------------------------- /Fetch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fetch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fetch.xcodeproj/xcshareddata/xcschemes/Fetch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcodeproj/xcshareddata/xcschemes/Fetch.xcscheme -------------------------------------------------------------------------------- /Fetch.xcodeproj/xcshareddata/xcschemes/PutioKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcodeproj/xcshareddata/xcschemes/PutioKit.xcscheme -------------------------------------------------------------------------------- /Fetch.xcodeproj/xcshareddata/xcschemes/SRBarcodeScanner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcodeproj/xcshareddata/xcschemes/SRBarcodeScanner.xcscheme -------------------------------------------------------------------------------- /Fetch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button-light.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light@2x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button-light.imageset/onepassword-button-light@3x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button-light.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button@2x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button.imageset/onepassword-button@3x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-button.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension-light.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension-light~compact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension-light~compact.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension-light~regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension-light~regular.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension.imageset/onepassword-extension~compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension.imageset/onepassword-extension~compact.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension.imageset/onepassword-extension~regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension.imageset/onepassword-extension~regular.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension~compact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension~compact.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-extension~regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-extension~regular.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar-light.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar-light.imageset/onepassword-navbar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar-light.imageset/onepassword-navbar-light.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar-light.imageset/onepassword-navbar-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar-light.imageset/onepassword-navbar-light@2x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar-light.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar@2x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar.imageset/onepassword-navbar@3x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-navbar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-navbar.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar-light.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar-light.imageset/onepassword-toolbar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar-light.imageset/onepassword-toolbar-light.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar-light.pdf -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar@2x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar.imageset/onepassword-toolbar@3x.png -------------------------------------------------------------------------------- /Fetch/1Password.xcassets/onepassword-toolbar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/1Password.xcassets/onepassword-toolbar.pdf -------------------------------------------------------------------------------- /Fetch/ActivityTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/ActivityTableViewController.swift -------------------------------------------------------------------------------- /Fetch/AddFeedTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/AddFeedTableViewController.swift -------------------------------------------------------------------------------- /Fetch/AddFilesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/AddFilesViewController.swift -------------------------------------------------------------------------------- /Fetch/AllFilesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/AllFilesTableViewController.swift -------------------------------------------------------------------------------- /Fetch/AnswerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/AnswerViewController.swift -------------------------------------------------------------------------------- /Fetch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/AppDelegate.swift -------------------------------------------------------------------------------- /Fetch/CastButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastButton.swift -------------------------------------------------------------------------------- /Fetch/CastConnectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastConnectionState.swift -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_off.imageset/cast_off@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on.imageset/cast_on@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on0.imageset/cast_on0@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on1.imageset/cast_on1@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cast_on2.imageset/cast_on2@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/check.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/check.imageset/check@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/check.imageset/check@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/check.imageset/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/check.imageset/check@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/check.imageset/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/check.imageset/check@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cling.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cling.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/cling.imageset/cling@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_outline.imageset/icon_music_outline@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_music_solid.imageset/icon_music_solid@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_outline.imageset/icon_play_outline@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_play_solid.imageset/icon_play_solid@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_settings_outline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_settings_outline.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_settings_solid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_settings_solid.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume0.imageset/icon_volume0@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume1.imageset/icon_volume1@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume2.imageset/icon_volume2@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/icon_volume3.imageset/icon_volume3@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_left.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_left.imageset/media_left@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_next.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_next.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_next.imageset/media_next@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_pause.imageset/media_pause@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_play.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_play.imageset/media_play@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_prev.imageset/media_prev@3x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_right.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@1x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@2x.png -------------------------------------------------------------------------------- /Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastFrameworkAssets.xcassets/media_right.imageset/media_right@3x.png -------------------------------------------------------------------------------- /Fetch/CastHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastHandler.swift -------------------------------------------------------------------------------- /Fetch/CastHandlerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastHandlerDelegate.swift -------------------------------------------------------------------------------- /Fetch/CastRemoteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastRemoteViewController.swift -------------------------------------------------------------------------------- /Fetch/CastService+PlayFileWithCustomInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/CastService+PlayFileWithCustomInfo.swift -------------------------------------------------------------------------------- /Fetch/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/DetailViewController.swift -------------------------------------------------------------------------------- /Fetch/DirectoryTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/DirectoryTableViewController.swift -------------------------------------------------------------------------------- /Fetch/Downloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Downloader.swift -------------------------------------------------------------------------------- /Fetch/Downloads.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Downloads.storyboard -------------------------------------------------------------------------------- /Fetch/DownloadsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/DownloadsTableViewController.swift -------------------------------------------------------------------------------- /Fetch/FAQTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FAQTableViewController.swift -------------------------------------------------------------------------------- /Fetch/FAQs.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FAQs.storyboard -------------------------------------------------------------------------------- /Fetch/Fetch-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Fetch-Bridging-Header.h -------------------------------------------------------------------------------- /Fetch/FetchAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FetchAlertController.swift -------------------------------------------------------------------------------- /Fetch/FetchMediaControls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FetchMediaControls.swift -------------------------------------------------------------------------------- /Fetch/FilesNavViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FilesNavViewController.swift -------------------------------------------------------------------------------- /Fetch/FilesTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FilesTabViewController.swift -------------------------------------------------------------------------------- /Fetch/FilesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FilesTableViewController.swift -------------------------------------------------------------------------------- /Fetch/FolderSelectTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FolderSelectTableViewController.swift -------------------------------------------------------------------------------- /Fetch/FolderSelectorNavViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/FolderSelectorNavViewController.swift -------------------------------------------------------------------------------- /Fetch/GradientOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/GradientOverlay.swift -------------------------------------------------------------------------------- /Fetch/ImageHandlerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/ImageHandlerViewController.swift -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/icon@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/ipad.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/ipad@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/is2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/is2@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/is2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/is2@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/ispot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/ispot@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/ispot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/ispot@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/pad-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/pad-s.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/pad-s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/pad-s@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/pad-spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/pad-spot.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/pad-spot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/pad-spot@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/AppIcon.appiconset/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/AppIcon.appiconset/pro.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Files-Active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Files-Active.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Files-Active.imageset/Files-Active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Files-Active.imageset/Files-Active.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Files.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Files.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Files.imageset/Files.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Files.imageset/Files.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/Image.imageset/image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/Image.imageset/image.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/audio-new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/audio-new.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/audio-new.imageset/audio-new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/audio-new.imageset/audio-new.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/audio.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/audio.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/audio.imageset/music.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/audio.imageset/music.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/cloud-active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/cloud-active.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/cloud-active.imageset/cloudactive2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/cloud-active.imageset/cloudactive2.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/cloud.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/cloud.imageset/cloud2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/cloud.imageset/cloud2.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/document-new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/document-new.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/document-new.imageset/document-new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/document-new.imageset/document-new.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/document.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/document.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/document.imageset/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/document.imageset/document.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/done.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/done.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/done.imageset/done@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/done.imageset/done@1x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/done.imageset/done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/done.imageset/done@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/done.imageset/done@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/done.imageset/done@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/down-chevron.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/down-chevron.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/down-chevron.imageset/down-chevron.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/down-chevron.imageset/down-chevron.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/episode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/episode.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/episode.imageset/episode@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/episode.imageset/episode@1x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/episode.imageset/episode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/episode.imageset/episode@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/episode.imageset/episode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/episode.imageset/episode@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/f30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/f30.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/f30.imageset/ICONS 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/f30.imageset/ICONS 2.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-1.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-1.imageset/fetch-cast-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-1.imageset/fetch-cast-1.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-2.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-2.imageset/fetch-cast-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-2.imageset/fetch-cast-2.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-3.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-cast-3.imageset/fetch-cast-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-cast-3.imageset/fetch-cast-3.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-pause.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-pause.imageset/ICONS 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-pause.imageset/ICONS 1.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-play.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-play.imageset/ICONS 1 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-play.imageset/ICONS 1 1.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-thumb-active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-thumb-active.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-thumb-active.imageset/active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-thumb-active.imageset/active.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-thumb.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-thumb.imageset/thumb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-thumb.imageset/thumb.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-tv.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-tv.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/fetch-tv.imageset/fetch-tv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/fetch-tv.imageset/fetch-tv.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/folder.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/folder.imageset/folder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/folder.imageset/folder.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/image-new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/image-new.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/image-new.imageset/image-new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/image-new.imageset/image-new.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/indicator.imageset/indicator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/indicator.imageset/indicator.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/ipad.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/ipad@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/iphone@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/iphone@1x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/iphone@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/login-bg.imageset/iphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/login-bg.imageset/iphone@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/new-star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/new-star.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/new-star.imageset/new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/new-star.imageset/new.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/pageFilesFile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/pageFilesFile.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/pageFilesFile.imageset/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/pageFilesFile.imageset/file.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/play.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/play.imageset/play@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/play.imageset/play@1x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/play.imageset/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/play.imageset/play@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/play.imageset/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/play.imageset/play@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/poster.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/poster.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/poster.imageset/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/poster.imageset/poster.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/poster.imageset/poster@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/poster.imageset/poster@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/poster.imageset/poster@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/poster.imageset/poster@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/r30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/r30.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/r30.imageset/ICONS 2 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/r30.imageset/ICONS 2 1.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/search-active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/search-active.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/search-active.imageset/search2-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/search-active.imageset/search2-active.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/search.imageset/search2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/search.imageset/search2.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/settings.imageset/1432172457_Streamline-75.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/settings.imageset/1432172457_Streamline-75.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/startup.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/startup.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/startup.imageset/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/startup.imageset/startup.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/startup.imageset/startup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/startup.imageset/startup@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/startup.imageset/startup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/startup.imageset/startup@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tick.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tick.imageset/tick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tick.imageset/tick.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tmdb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tmdb.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tmdb.imageset/tmdb@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tmdb.imageset/tmdb@1x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tmdb.imageset/tmdb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tmdb.imageset/tmdb@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/tmdb.imageset/tmdb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/tmdb.imageset/tmdb@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/video-new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/video-new.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/video-new.imageset/video-new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/video-new.imageset/video-new.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/video.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/video.imageset/video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/video.imageset/video.pdf -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-ipad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-ipad.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-ipad.imageset/vlc-ipad@3x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-iphone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-iphone.imageset/Contents.json -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone@2x.png -------------------------------------------------------------------------------- /Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Images.xcassets/vlc-iphone.imageset/vlc-iphone@3x.png -------------------------------------------------------------------------------- /Fetch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Info.plist -------------------------------------------------------------------------------- /Fetch/Interfaces/Activity.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/Activity.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/CastRemote.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/CastRemote.xib -------------------------------------------------------------------------------- /Fetch/Interfaces/FetchMediaControls.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/FetchMediaControls.xib -------------------------------------------------------------------------------- /Fetch/Interfaces/FirstRun.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/FirstRun.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/FolderPicker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/FolderPicker.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/Main.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/More.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/More.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/MoveFiles.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/MoveFiles.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/TVMovies.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/TVMovies.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/Transfers.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/Transfers.storyboard -------------------------------------------------------------------------------- /Fetch/Interfaces/WhatsNewViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Interfaces/WhatsNewViewController.xib -------------------------------------------------------------------------------- /Fetch/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Launch Screen.storyboard -------------------------------------------------------------------------------- /Fetch/LoaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/LoaderView.swift -------------------------------------------------------------------------------- /Fetch/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/LoginViewController.swift -------------------------------------------------------------------------------- /Fetch/MediaPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/MediaPlayerViewController.swift -------------------------------------------------------------------------------- /Fetch/MoreTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/MoreTableViewController.swift -------------------------------------------------------------------------------- /Fetch/MoveFilesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/MoveFilesTableViewController.swift -------------------------------------------------------------------------------- /Fetch/MovieCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/MovieCollectionViewController.swift -------------------------------------------------------------------------------- /Fetch/NSObject+Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/NSObject+Delay.swift -------------------------------------------------------------------------------- /Fetch/NoResultsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/NoResultsView.swift -------------------------------------------------------------------------------- /Fetch/OpenInVLC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/OpenInVLC.swift -------------------------------------------------------------------------------- /Fetch/PageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/PageViewController.swift -------------------------------------------------------------------------------- /Fetch/PlayerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/PlayerDelegate.swift -------------------------------------------------------------------------------- /Fetch/PosterCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/PosterCollectionViewCell.swift -------------------------------------------------------------------------------- /Fetch/PosterCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/PosterCollectionViewController.swift -------------------------------------------------------------------------------- /Fetch/QRScannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/QRScannerViewController.swift -------------------------------------------------------------------------------- /Fetch/QuickAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/QuickAction.swift -------------------------------------------------------------------------------- /Fetch/RSS.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/RSS.storyboard -------------------------------------------------------------------------------- /Fetch/RSSTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/RSSTableViewController.swift -------------------------------------------------------------------------------- /Fetch/SearchResultsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/SearchResultsViewController.swift -------------------------------------------------------------------------------- /Fetch/SeasonSectionHeaderCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/SeasonSectionHeaderCollectionReusableView.swift -------------------------------------------------------------------------------- /Fetch/Settings.bundle/Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Settings.bundle/Acknowledgements.plist -------------------------------------------------------------------------------- /Fetch/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Fetch/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Fetch/SettingsNavViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/SettingsNavViewController.swift -------------------------------------------------------------------------------- /Fetch/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/SettingsTableViewController.swift -------------------------------------------------------------------------------- /Fetch/Sharing.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Sharing.storyboard -------------------------------------------------------------------------------- /Fetch/TVCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVCollectionViewController.swift -------------------------------------------------------------------------------- /Fetch/TVMovieLoading.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVMovieLoading.xib -------------------------------------------------------------------------------- /Fetch/TVMovieLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVMovieLoadingView.swift -------------------------------------------------------------------------------- /Fetch/TVMovieViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVMovieViewController.swift -------------------------------------------------------------------------------- /Fetch/TVShowCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVShowCollectionViewCell.swift -------------------------------------------------------------------------------- /Fetch/TVShowCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TVShowCollectionViewController.swift -------------------------------------------------------------------------------- /Fetch/TextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TextViewController.swift -------------------------------------------------------------------------------- /Fetch/Transfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/Transfer.swift -------------------------------------------------------------------------------- /Fetch/TransferSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TransferSplitViewController.swift -------------------------------------------------------------------------------- /Fetch/TransfersDetailTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TransfersDetailTableViewController.swift -------------------------------------------------------------------------------- /Fetch/TransfersTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/TransfersTableViewController.swift -------------------------------------------------------------------------------- /Fetch/UIColor+Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/UIColor+Colors.swift -------------------------------------------------------------------------------- /Fetch/UIView+FadeAndHide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/UIView+FadeAndHide.swift -------------------------------------------------------------------------------- /Fetch/WhatsNewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/WhatsNewViewController.swift -------------------------------------------------------------------------------- /Fetch/WhichFolderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/WhichFolderView.swift -------------------------------------------------------------------------------- /Fetch/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Fetch/success.wav -------------------------------------------------------------------------------- /FetchUITests/FetchUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/FetchUITests/FetchUITests.swift -------------------------------------------------------------------------------- /FetchUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/FetchUITests/Info.plist -------------------------------------------------------------------------------- /FetchUITests/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/FetchUITests/SnapshotHelper.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods', '>= 1.0.0' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/Podfile.lock -------------------------------------------------------------------------------- /PutioKit/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Event.swift -------------------------------------------------------------------------------- /PutioKit/Events.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Events.swift -------------------------------------------------------------------------------- /PutioKit/Feed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Feed.swift -------------------------------------------------------------------------------- /PutioKit/Feeds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Feeds.swift -------------------------------------------------------------------------------- /PutioKit/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/File.swift -------------------------------------------------------------------------------- /PutioKit/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Files.swift -------------------------------------------------------------------------------- /PutioKit/Genre.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Genre.swift -------------------------------------------------------------------------------- /PutioKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Info.plist -------------------------------------------------------------------------------- /PutioKit/Keychain + Hotfix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Keychain + Hotfix.swift -------------------------------------------------------------------------------- /PutioKit/MediaType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/MediaType.swift -------------------------------------------------------------------------------- /PutioKit/Movie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Movie.swift -------------------------------------------------------------------------------- /PutioKit/NoArtwork.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/NoArtwork.xib -------------------------------------------------------------------------------- /PutioKit/NoArtworkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/NoArtworkView.swift -------------------------------------------------------------------------------- /PutioKit/PushNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/PushNotifications.swift -------------------------------------------------------------------------------- /PutioKit/Putio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Putio.swift -------------------------------------------------------------------------------- /PutioKit/PutioDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/PutioDelegate.swift -------------------------------------------------------------------------------- /PutioKit/PutioKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/PutioKit.h -------------------------------------------------------------------------------- /PutioKit/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Search.swift -------------------------------------------------------------------------------- /PutioKit/SearchDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/SearchDelegate.swift -------------------------------------------------------------------------------- /PutioKit/TMDB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TMDB.swift -------------------------------------------------------------------------------- /PutioKit/TMDBSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TMDBSearch.swift -------------------------------------------------------------------------------- /PutioKit/TVEpisode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TVEpisode.swift -------------------------------------------------------------------------------- /PutioKit/TVSeason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TVSeason.swift -------------------------------------------------------------------------------- /PutioKit/TVShow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TVShow.swift -------------------------------------------------------------------------------- /PutioKit/TVShowDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/TVShowDelegate.swift -------------------------------------------------------------------------------- /PutioKit/Videos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/PutioKit/Videos.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/README.md -------------------------------------------------------------------------------- /SRBarcodeScanner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/SRBarcodeScanner/Info.plist -------------------------------------------------------------------------------- /SRBarcodeScanner/SRBarcodeScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/SRBarcodeScanner/SRBarcodeScanner.h -------------------------------------------------------------------------------- /SRBarcodeScanner/SRBarcodeScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/SRBarcodeScanner/SRBarcodeScanner.swift -------------------------------------------------------------------------------- /SRBarcodeScanner/SRBarcodeScannerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/SRBarcodeScanner/SRBarcodeScannerDelegate.swift -------------------------------------------------------------------------------- /prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryFetch/Fetch/HEAD/prepare --------------------------------------------------------------------------------