├── .gitignore ├── .swiftformat ├── .swiftlint.yml ├── BuildTools ├── Empty.swift ├── Package.resolved └── Package.swift ├── External └── Themes │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ └── Sources │ ├── RunestoneOneDarkTheme │ ├── Colors.xcassets │ │ ├── Contents.json │ │ ├── OneDarkAqua.colorset │ │ │ └── Contents.json │ │ ├── OneDarkBackground.colorset │ │ │ └── Contents.json │ │ ├── OneDarkBlue.colorset │ │ │ └── Contents.json │ │ ├── OneDarkComment.colorset │ │ │ └── Contents.json │ │ ├── OneDarkCurrentLine.colorset │ │ │ └── Contents.json │ │ ├── OneDarkForeground.colorset │ │ │ └── Contents.json │ │ ├── OneDarkGreen.colorset │ │ │ └── Contents.json │ │ ├── OneDarkPurple.colorset │ │ │ └── Contents.json │ │ ├── OneDarkRed.colorset │ │ │ └── Contents.json │ │ └── OneDarkYellow.colorset │ │ │ └── Contents.json │ └── OneDarkTheme.swift │ ├── RunestonePlainTextTheme │ └── PlainTextTheme.swift │ ├── RunestoneThemeCommon │ ├── EditorTheme.swift │ └── HighlightName.swift │ ├── RunestoneTomorrowNightTheme │ ├── Colors.xcassets │ │ ├── Contents.json │ │ ├── TomorrowNightAqua.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightBackground.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightBlue.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightComment.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightCurrentLine.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightForeground.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightGreen.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightOrange.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightPurple.colorset │ │ │ └── Contents.json │ │ ├── TomorrowNightRed.colorset │ │ │ └── Contents.json │ │ └── TomorrowNightYellow.colorset │ │ │ └── Contents.json │ └── TomorrowNightTheme.swift │ └── RunestoneTomorrowTheme │ ├── Colors.xcassets │ ├── Contents.json │ ├── TomorrowAqua.colorset │ │ └── Contents.json │ ├── TomorrowBackground.colorset │ │ └── Contents.json │ ├── TomorrowBlue.colorset │ │ └── Contents.json │ ├── TomorrowComment.colorset │ │ └── Contents.json │ ├── TomorrowCurrentLine.colorset │ │ └── Contents.json │ ├── TomorrowForeground.colorset │ │ └── Contents.json │ ├── TomorrowGreen.colorset │ │ └── Contents.json │ ├── TomorrowOrange.colorset │ │ └── Contents.json │ ├── TomorrowPurple.colorset │ │ └── Contents.json │ ├── TomorrowRed.colorset │ │ └── Contents.json │ └── TomorrowYellow.colorset │ │ └── Contents.json │ └── TomorrowTheme.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Makefile ├── README.md ├── cloudflare_worker.js ├── ec3730.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── ec3730.xcscheme └── xcuserdata │ └── twodayslate.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ec3730.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── ec3730 ├── AppDelegate.swift ├── Assets.xcassets │ ├── AkhmadDark.appiconset │ │ ├── Contents.json │ │ └── Source 2_dark.png │ ├── AkhmadDarkThumb.imageset │ │ ├── Contents.json │ │ └── Source 2_dark.svg │ ├── AkhmadLight.appiconset │ │ ├── Contents.json │ │ └── Source 2_light.png │ ├── AkhmadLightThumb.imageset │ │ ├── Contents.json │ │ └── Source 2_light.svg │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small-50.png │ │ ├── icon-small-50@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── ios-marketing.png │ │ ├── notification-icon@2x.png │ │ ├── notification-icon@3x.png │ │ ├── notification-icon~ipad.png │ │ └── notification-icon~ipad@2x.png │ ├── AppIconThumb.imageset │ │ ├── Contents.json │ │ └── settings_icon.svg │ ├── Connected.imageset │ │ ├── Contents.json │ │ └── wifi.pdf │ ├── Connected_selected.imageset │ │ ├── Contents.json │ │ └── wifi.pdf │ ├── Contents.json │ ├── Device.imageset │ │ ├── Contents.json │ │ └── phone-camera-back.pdf │ ├── Device_selected.imageset │ │ ├── Contents.json │ │ └── phone-camera-back.pdf │ ├── Disconnected.imageset │ │ ├── Contents.json │ │ └── wifi-off.pdf │ ├── Disconnected_selected.imageset │ │ ├── Contents.json │ │ └── wifi-off.pdf │ ├── Host.imageset │ │ ├── Contents.json │ │ ├── icons8-website-30.png │ │ ├── icons8-website-60.png │ │ └── icons8-website-90.png │ ├── More.imageset │ │ ├── Contents.json │ │ └── dots.pdf │ ├── More_selected.imageset │ │ ├── Contents.json │ │ └── dots.pdf │ ├── Network.imageset │ │ ├── Contents.json │ │ └── world-2.pdf │ ├── Network_selected.imageset │ │ ├── Contents.json │ │ └── world-2.pdf │ ├── Ping.imageset │ │ ├── Contents.json │ │ └── direction-56.pdf │ ├── Ping_selected.imageset │ │ ├── Contents.json │ │ └── direction-56.pdf │ ├── Settings.imageset │ │ ├── Contents.json │ │ └── settings-gear.pdf │ ├── Settings_selected.imageset │ │ ├── Contents.json │ │ └── settings-gear.pdf │ ├── Source.imageset │ │ ├── Contents.json │ │ └── window-dev.pdf │ ├── Source_selected.imageset │ │ ├── Contents.json │ │ └── window-dev.pdf │ ├── at.imageset │ │ ├── Contents.json │ │ └── at-sign.pdf │ ├── star.imageset │ │ ├── Contents.json │ │ └── star-rate.pdf │ └── twitter.imageset │ │ ├── Contents.json │ │ └── logo-twitter.pdf ├── Base.lproj │ └── LaunchScreen.storyboard ├── BlurredPickerView.swift ├── CellManager.swift ├── CenterTextTableViewCell.swift ├── ContentView.swift ├── Controllers │ ├── DataFeedSubscriptionDataViewController.swift │ ├── DataFeedUserApiKeyTableViewController.swift │ ├── DataFeedsTableViewController.swift │ ├── DeviceController.swift │ ├── EZPanel.swift │ ├── InterfaceTableViewController.swift │ └── PingViewController.swift ├── CopyCell.swift ├── CopyDetailCell.swift ├── CopyLabel.swift ├── DNSResolver.swift ├── Data Feeds │ ├── CoreData │ │ └── NetUtilsCoreData.xcdatamodeld │ │ │ └── Usage.xcdatamodel │ │ │ └── contents │ ├── DFOneTimePurchase.swift │ ├── DFService.swift │ ├── DFSubscription.swift │ ├── DataFeed.swift │ ├── DataFeedCell.swift │ ├── DataFeedCells.swift │ ├── DataFeedEndpoint.swift │ ├── DataFeedErrors.swift │ ├── DataFeedPurchaseProtocol.swift │ ├── DataFeedService.swift │ ├── DataFeedSubscription.swift │ ├── DataFeedSubscriptionCellManager.swift │ ├── Google │ │ ├── GoogleWebRisk.swift │ │ ├── GoogleWebRiskCellManager.swift │ │ └── GoogleWebRiskRecord.swift │ ├── LocalDns │ │ └── LocalDns.swift │ ├── URL Parse │ │ └── UrlParsedFeed.swift │ └── WhoisXML │ │ ├── WhoIsXmlCategorizationResult.swift │ │ ├── WhoIsXmlCategorizationService.swift │ │ ├── WhoIsXmlContactsResult.swift │ │ ├── WhoIsXmlGeoLoactionService.swift │ │ ├── WhoIsXmlGeoLocationResult.swift │ │ ├── WhoisDnsResults.swift │ │ ├── WhoisRecord.swift │ │ ├── WhoisXMLDnsService.swift │ │ ├── WhoisXMLService.swift │ │ ├── WhoisXml.swift │ │ ├── WhoisXmlCells.swift │ │ ├── WhoisXmlContactsService.swift │ │ ├── WhoisXmlDnsCells.swift │ │ └── WhoisXmlReputationRecord.swift ├── DefaultsSwitch.swift ├── DemoData │ ├── GoogleWebRiskSectionModel.json │ ├── Utility.swift │ ├── WhoIsXmlCategorizationSectionModel.json │ ├── WhoIsXmlContactsSectionModel.json │ ├── WhoIsXmlGeoLocationSectionModel.json │ ├── WhoisXmlDnsSectionModel.json │ ├── WhoisXmlReputationSectionModel.json │ └── WhoisXmlWhoisSectionModel.json ├── Extensions │ ├── Encodable+dictionary.swift │ ├── Error.swift │ ├── Interface.swift │ ├── Reachability.swift │ ├── SKProductSubscriptionPeriod.swift │ ├── SimpleAppIcons+NetUtils.swift │ ├── UIAlertController.swift │ ├── UIDevice.swift │ ├── UIImage+Codable.swift │ ├── UITextView.swift │ ├── UIView.swift │ ├── UIViewController.swift │ └── UserDefaults.swift ├── IAPFooterView.swift ├── Info.plist ├── LoadingCell.swift ├── Models │ ├── DataUsageModel.swift │ ├── Device │ │ ├── DeviceInfoModel.swift │ │ ├── DeviceInfoSectionModel.swift │ │ └── Sections │ │ │ ├── CarrierInfoModel.swift │ │ │ ├── DataUsageInfoModel.swift │ │ │ ├── FingerprintInfoModel.swift │ │ │ ├── JavaScriptInfoModel.swift │ │ │ ├── MemoryInfoModel.swift │ │ │ ├── ProcessInfoModel.swift │ │ │ └── UIDeviceInfoModel.swift │ ├── FingerprintModel.swift │ ├── HostSectionModel.swift │ ├── HostViewModel.swift │ ├── ReachabilityModel.swift │ ├── Sections │ │ ├── GoogleWebRiskSectionModel.swift │ │ ├── LocalDnsModel.swift │ │ ├── UrlParsedModel.swift │ │ ├── WhoIsXmlCategorizationSectionModel.swift │ │ ├── WhoIsXmlContactsSectionModel.swift │ │ ├── WhoIsXmlGeoLocationSectionModel.swift │ │ ├── WhoisXmlDnsSectionModel.swift │ │ ├── WhoisXmlReputationSectionModel.swift │ │ └── WhoisXmlWhoisSectionModel.swift │ └── StoreKitModel.swift ├── Modifiers │ └── PaddingListModifier.swift ├── Persistence │ ├── DataModel.xcdatamodeld │ │ └── DataModel.xcdatamodel │ │ │ └── contents │ ├── HostData.swift │ ├── HostDataGroup.swift │ ├── Persistence.swift │ └── PingItem.swift ├── Protocols │ └── InAppPurchaseUpdateDelegate.swift ├── ScreenId.swift ├── Store.storekit ├── TimedCache.swift ├── Views │ ├── CopyCell │ │ ├── CopyCellChevronView.swift │ │ ├── CopyCellContentView.swift │ │ ├── CopyCellDetailStyle.swift │ │ ├── CopyCellMultipleTypesView.swift │ │ ├── CopyCellSingleItemRowView.swift │ │ ├── CopyCellStyleConfig.swift │ │ ├── CopyCellToggleableItemRowView.swift │ │ ├── CopyCellType.swift │ │ ├── CopyCellTypeView.swift │ │ └── NewCopyCellProtocol.swift │ ├── Device │ │ ├── DeviceInfoSectionView.swift │ │ └── DeviceInfoView.swift │ ├── FSDisclosureGroup.swift │ ├── Host │ │ ├── HostBarView.swift │ │ ├── HostHistoryList.swift │ │ ├── HostModelWrapperView.swift │ │ ├── HostResult.swift │ │ ├── HostResultSection.swift │ │ ├── HostSectionOrganizerView.swift │ │ ├── HostView.swift │ │ ├── HostViewSection.swift │ │ ├── HostViewSectionContent.swift │ │ └── HostViewSectionFocusView.swift │ ├── Interface │ │ ├── InterfaceConnectionBarView.swift │ │ ├── InterfaceListView.swift │ │ └── InterfaceView.swift │ ├── PurchaseCellView.swift │ ├── Settings │ │ ├── AppIconSelection.swift │ │ └── Settings.swift │ ├── ShareSheetView.swift │ ├── Source │ │ ├── RunestoneDefaultTheme.swift │ │ ├── RunestoneView.swift │ │ ├── Snap │ │ │ ├── SnapCalculator.swift │ │ │ ├── SnapPoint.swift │ │ │ ├── SnapState.swift │ │ │ └── SnappedDrawer.swift │ │ ├── SourceCard.swift │ │ ├── SourceUrlBarView.swift │ │ └── WebWrapperView.swift │ ├── TappedText.swift │ ├── UIViewControllerView.swift │ └── WebkitOverlayView.swift ├── WhoisLockedTableViewCell.swift ├── WiFiSSID.swift └── ec3730.entitlements ├── ec3730Tests ├── Info.plist └── ec3730Tests.swift ├── ec3730UITests ├── Info.plist └── ec3730UITests.swift ├── fastlane ├── Appfile ├── Deliverfile.swift ├── Fastfile ├── README.md ├── Snapfile ├── SnapshotHelper.swift ├── metadata │ ├── copyright.txt │ ├── en-US │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_information │ │ ├── demo_password.txt │ │ ├── demo_user.txt │ │ ├── email_address.txt │ │ ├── first_name.txt │ │ ├── last_name.txt │ │ ├── notes.txt │ │ └── phone_number.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt └── screenshots │ └── README.txt ├── icon.png ├── icon.psd ├── settings_icon.psd └── whoisxml.schema /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /BuildTools/Empty.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BuildTools/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/BuildTools/Package.resolved -------------------------------------------------------------------------------- /BuildTools/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/BuildTools/Package.swift -------------------------------------------------------------------------------- /External/Themes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/.gitignore -------------------------------------------------------------------------------- /External/Themes/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Package.swift -------------------------------------------------------------------------------- /External/Themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/README.md -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkAqua.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkAqua.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkBackground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkBlue.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkComment.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkComment.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkCurrentLine.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkCurrentLine.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkForeground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkGreen.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkPurple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkPurple.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkRed.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/Colors.xcassets/OneDarkYellow.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneOneDarkTheme/OneDarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneOneDarkTheme/OneDarkTheme.swift -------------------------------------------------------------------------------- /External/Themes/Sources/RunestonePlainTextTheme/PlainTextTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestonePlainTextTheme/PlainTextTheme.swift -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneThemeCommon/EditorTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneThemeCommon/EditorTheme.swift -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneThemeCommon/HighlightName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneThemeCommon/HighlightName.swift -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightAqua.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightAqua.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightBackground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightBlue.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightComment.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightComment.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightCurrentLine.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightCurrentLine.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightForeground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightGreen.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightOrange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightOrange.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightPurple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightPurple.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightRed.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/Colors.xcassets/TomorrowNightYellow.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowNightTheme/TomorrowNightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowNightTheme/TomorrowNightTheme.swift -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowAqua.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowAqua.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowBackground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowBlue.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowComment.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowComment.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowCurrentLine.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowCurrentLine.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowForeground.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowGreen.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowOrange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowOrange.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowPurple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowPurple.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowRed.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/Colors.xcassets/TomorrowYellow.colorset/Contents.json -------------------------------------------------------------------------------- /External/Themes/Sources/RunestoneTomorrowTheme/TomorrowTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/External/Themes/Sources/RunestoneTomorrowTheme/TomorrowTheme.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/README.md -------------------------------------------------------------------------------- /cloudflare_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/cloudflare_worker.js -------------------------------------------------------------------------------- /ec3730.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ec3730.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ec3730.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ec3730.xcodeproj/xcshareddata/xcschemes/ec3730.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcodeproj/xcshareddata/xcschemes/ec3730.xcscheme -------------------------------------------------------------------------------- /ec3730.xcodeproj/xcuserdata/twodayslate.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcodeproj/xcuserdata/twodayslate.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ec3730.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ec3730.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ec3730.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ec3730/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/AppDelegate.swift -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadDark.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadDark.appiconset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadDark.appiconset/Source 2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadDark.appiconset/Source 2_dark.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadDarkThumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadDarkThumb.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadDarkThumb.imageset/Source 2_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadDarkThumb.imageset/Source 2_dark.svg -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadLight.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadLight.appiconset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadLight.appiconset/Source 2_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadLight.appiconset/Source 2_light.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadLightThumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadLightThumb.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AkhmadLightThumb.imageset/Source 2_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AkhmadLightThumb.imageset/Source 2_light.svg -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-small-50.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-small.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIconThumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIconThumb.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/AppIconThumb.imageset/settings_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/AppIconThumb.imageset/settings_icon.svg -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Connected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Connected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Connected.imageset/wifi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Connected.imageset/wifi.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Connected_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Connected_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Connected_selected.imageset/wifi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Connected_selected.imageset/wifi.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Device.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Device.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Device.imageset/phone-camera-back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Device.imageset/phone-camera-back.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Device_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Device_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Device_selected.imageset/phone-camera-back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Device_selected.imageset/phone-camera-back.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Disconnected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Disconnected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Disconnected.imageset/wifi-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Disconnected.imageset/wifi-off.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Disconnected_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Disconnected_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Disconnected_selected.imageset/wifi-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Disconnected_selected.imageset/wifi-off.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Host.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Host.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Host.imageset/icons8-website-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Host.imageset/icons8-website-30.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Host.imageset/icons8-website-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Host.imageset/icons8-website-60.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Host.imageset/icons8-website-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Host.imageset/icons8-website-90.png -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/More.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/More.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/More.imageset/dots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/More.imageset/dots.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/More_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/More_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/More_selected.imageset/dots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/More_selected.imageset/dots.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Network.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Network.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Network.imageset/world-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Network.imageset/world-2.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Network_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Network_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Network_selected.imageset/world-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Network_selected.imageset/world-2.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Ping.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Ping.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Ping.imageset/direction-56.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Ping.imageset/direction-56.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Ping_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Ping_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Ping_selected.imageset/direction-56.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Ping_selected.imageset/direction-56.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Settings.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Settings.imageset/settings-gear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Settings.imageset/settings-gear.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Settings_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Settings_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Settings_selected.imageset/settings-gear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Settings_selected.imageset/settings-gear.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Source.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Source.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Source.imageset/window-dev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Source.imageset/window-dev.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Source_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Source_selected.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/Source_selected.imageset/window-dev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/Source_selected.imageset/window-dev.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/at.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/at.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/at.imageset/at-sign.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/at.imageset/at-sign.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/star.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/star.imageset/star-rate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/star.imageset/star-rate.pdf -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/twitter.imageset/Contents.json -------------------------------------------------------------------------------- /ec3730/Assets.xcassets/twitter.imageset/logo-twitter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Assets.xcassets/twitter.imageset/logo-twitter.pdf -------------------------------------------------------------------------------- /ec3730/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ec3730/BlurredPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/BlurredPickerView.swift -------------------------------------------------------------------------------- /ec3730/CellManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/CellManager.swift -------------------------------------------------------------------------------- /ec3730/CenterTextTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/CenterTextTableViewCell.swift -------------------------------------------------------------------------------- /ec3730/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/ContentView.swift -------------------------------------------------------------------------------- /ec3730/Controllers/DataFeedSubscriptionDataViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/DataFeedSubscriptionDataViewController.swift -------------------------------------------------------------------------------- /ec3730/Controllers/DataFeedUserApiKeyTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/DataFeedUserApiKeyTableViewController.swift -------------------------------------------------------------------------------- /ec3730/Controllers/DataFeedsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/DataFeedsTableViewController.swift -------------------------------------------------------------------------------- /ec3730/Controllers/DeviceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/DeviceController.swift -------------------------------------------------------------------------------- /ec3730/Controllers/EZPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/EZPanel.swift -------------------------------------------------------------------------------- /ec3730/Controllers/InterfaceTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/InterfaceTableViewController.swift -------------------------------------------------------------------------------- /ec3730/Controllers/PingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Controllers/PingViewController.swift -------------------------------------------------------------------------------- /ec3730/CopyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/CopyCell.swift -------------------------------------------------------------------------------- /ec3730/CopyDetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/CopyDetailCell.swift -------------------------------------------------------------------------------- /ec3730/CopyLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/CopyLabel.swift -------------------------------------------------------------------------------- /ec3730/DNSResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DNSResolver.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/CoreData/NetUtilsCoreData.xcdatamodeld/Usage.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/CoreData/NetUtilsCoreData.xcdatamodeld/Usage.xcdatamodel/contents -------------------------------------------------------------------------------- /ec3730/Data Feeds/DFOneTimePurchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DFOneTimePurchase.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DFService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DFService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DFSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DFSubscription.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeed.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedCell.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedCells.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedEndpoint.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedErrors.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedPurchaseProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedPurchaseProtocol.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedSubscription.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/DataFeedSubscriptionCellManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/DataFeedSubscriptionCellManager.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/Google/GoogleWebRisk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/Google/GoogleWebRisk.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/Google/GoogleWebRiskCellManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/Google/GoogleWebRiskCellManager.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/Google/GoogleWebRiskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/Google/GoogleWebRiskRecord.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/LocalDns/LocalDns.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/LocalDns/LocalDns.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/URL Parse/UrlParsedFeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/URL Parse/UrlParsedFeed.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoIsXmlCategorizationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoIsXmlCategorizationResult.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoIsXmlCategorizationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoIsXmlCategorizationService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoIsXmlContactsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoIsXmlContactsResult.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoIsXmlGeoLoactionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoIsXmlGeoLoactionService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoIsXmlGeoLocationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoIsXmlGeoLocationResult.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisDnsResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisDnsResults.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisRecord.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXMLDnsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXMLDnsService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXMLService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXMLService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXml.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXml.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXmlCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXmlCells.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXmlContactsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXmlContactsService.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXmlDnsCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXmlDnsCells.swift -------------------------------------------------------------------------------- /ec3730/Data Feeds/WhoisXML/WhoisXmlReputationRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Data Feeds/WhoisXML/WhoisXmlReputationRecord.swift -------------------------------------------------------------------------------- /ec3730/DefaultsSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DefaultsSwitch.swift -------------------------------------------------------------------------------- /ec3730/DemoData/GoogleWebRiskSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/GoogleWebRiskSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/Utility.swift -------------------------------------------------------------------------------- /ec3730/DemoData/WhoIsXmlCategorizationSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoIsXmlCategorizationSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/WhoIsXmlContactsSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoIsXmlContactsSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/WhoIsXmlGeoLocationSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoIsXmlGeoLocationSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/WhoisXmlDnsSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoisXmlDnsSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/WhoisXmlReputationSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoisXmlReputationSectionModel.json -------------------------------------------------------------------------------- /ec3730/DemoData/WhoisXmlWhoisSectionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/DemoData/WhoisXmlWhoisSectionModel.json -------------------------------------------------------------------------------- /ec3730/Extensions/Encodable+dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/Encodable+dictionary.swift -------------------------------------------------------------------------------- /ec3730/Extensions/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/Error.swift -------------------------------------------------------------------------------- /ec3730/Extensions/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/Interface.swift -------------------------------------------------------------------------------- /ec3730/Extensions/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/Reachability.swift -------------------------------------------------------------------------------- /ec3730/Extensions/SKProductSubscriptionPeriod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/SKProductSubscriptionPeriod.swift -------------------------------------------------------------------------------- /ec3730/Extensions/SimpleAppIcons+NetUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/SimpleAppIcons+NetUtils.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UIAlertController.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UIDevice.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UIImage+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UIImage+Codable.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UITextView.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UIView.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UIViewController.swift -------------------------------------------------------------------------------- /ec3730/Extensions/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Extensions/UserDefaults.swift -------------------------------------------------------------------------------- /ec3730/IAPFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/IAPFooterView.swift -------------------------------------------------------------------------------- /ec3730/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Info.plist -------------------------------------------------------------------------------- /ec3730/LoadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/LoadingCell.swift -------------------------------------------------------------------------------- /ec3730/Models/DataUsageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/DataUsageModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/DeviceInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/DeviceInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/DeviceInfoSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/DeviceInfoSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/CarrierInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/CarrierInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/DataUsageInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/DataUsageInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/FingerprintInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/FingerprintInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/JavaScriptInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/JavaScriptInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/MemoryInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/MemoryInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/ProcessInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/ProcessInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Device/Sections/UIDeviceInfoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Device/Sections/UIDeviceInfoModel.swift -------------------------------------------------------------------------------- /ec3730/Models/FingerprintModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/FingerprintModel.swift -------------------------------------------------------------------------------- /ec3730/Models/HostSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/HostSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/HostViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/HostViewModel.swift -------------------------------------------------------------------------------- /ec3730/Models/ReachabilityModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/ReachabilityModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/GoogleWebRiskSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/GoogleWebRiskSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/LocalDnsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/LocalDnsModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/UrlParsedModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/UrlParsedModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoIsXmlCategorizationSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoIsXmlCategorizationSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoIsXmlContactsSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoIsXmlContactsSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoIsXmlGeoLocationSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoIsXmlGeoLocationSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoisXmlDnsSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoisXmlDnsSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoisXmlReputationSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoisXmlReputationSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/Sections/WhoisXmlWhoisSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/Sections/WhoisXmlWhoisSectionModel.swift -------------------------------------------------------------------------------- /ec3730/Models/StoreKitModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Models/StoreKitModel.swift -------------------------------------------------------------------------------- /ec3730/Modifiers/PaddingListModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Modifiers/PaddingListModifier.swift -------------------------------------------------------------------------------- /ec3730/Persistence/DataModel.xcdatamodeld/DataModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Persistence/DataModel.xcdatamodeld/DataModel.xcdatamodel/contents -------------------------------------------------------------------------------- /ec3730/Persistence/HostData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Persistence/HostData.swift -------------------------------------------------------------------------------- /ec3730/Persistence/HostDataGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Persistence/HostDataGroup.swift -------------------------------------------------------------------------------- /ec3730/Persistence/Persistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Persistence/Persistence.swift -------------------------------------------------------------------------------- /ec3730/Persistence/PingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Persistence/PingItem.swift -------------------------------------------------------------------------------- /ec3730/Protocols/InAppPurchaseUpdateDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Protocols/InAppPurchaseUpdateDelegate.swift -------------------------------------------------------------------------------- /ec3730/ScreenId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/ScreenId.swift -------------------------------------------------------------------------------- /ec3730/Store.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Store.storekit -------------------------------------------------------------------------------- /ec3730/TimedCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/TimedCache.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellChevronView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellChevronView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellContentView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellDetailStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellDetailStyle.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellMultipleTypesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellMultipleTypesView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellSingleItemRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellSingleItemRowView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellStyleConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellStyleConfig.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellToggleableItemRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellToggleableItemRowView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellType.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/CopyCellTypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/CopyCellTypeView.swift -------------------------------------------------------------------------------- /ec3730/Views/CopyCell/NewCopyCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/CopyCell/NewCopyCellProtocol.swift -------------------------------------------------------------------------------- /ec3730/Views/Device/DeviceInfoSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Device/DeviceInfoSectionView.swift -------------------------------------------------------------------------------- /ec3730/Views/Device/DeviceInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Device/DeviceInfoView.swift -------------------------------------------------------------------------------- /ec3730/Views/FSDisclosureGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/FSDisclosureGroup.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostBarView.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostHistoryList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostHistoryList.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostModelWrapperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostModelWrapperView.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostResult.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostResultSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostResultSection.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostSectionOrganizerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostSectionOrganizerView.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostView.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostViewSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostViewSection.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostViewSectionContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostViewSectionContent.swift -------------------------------------------------------------------------------- /ec3730/Views/Host/HostViewSectionFocusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Host/HostViewSectionFocusView.swift -------------------------------------------------------------------------------- /ec3730/Views/Interface/InterfaceConnectionBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Interface/InterfaceConnectionBarView.swift -------------------------------------------------------------------------------- /ec3730/Views/Interface/InterfaceListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Interface/InterfaceListView.swift -------------------------------------------------------------------------------- /ec3730/Views/Interface/InterfaceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Interface/InterfaceView.swift -------------------------------------------------------------------------------- /ec3730/Views/PurchaseCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/PurchaseCellView.swift -------------------------------------------------------------------------------- /ec3730/Views/Settings/AppIconSelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Settings/AppIconSelection.swift -------------------------------------------------------------------------------- /ec3730/Views/Settings/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Settings/Settings.swift -------------------------------------------------------------------------------- /ec3730/Views/ShareSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/ShareSheetView.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/RunestoneDefaultTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/RunestoneDefaultTheme.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/RunestoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/RunestoneView.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/Snap/SnapCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/Snap/SnapCalculator.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/Snap/SnapPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/Snap/SnapPoint.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/Snap/SnapState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/Snap/SnapState.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/Snap/SnappedDrawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/Snap/SnappedDrawer.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/SourceCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/SourceCard.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/SourceUrlBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/SourceUrlBarView.swift -------------------------------------------------------------------------------- /ec3730/Views/Source/WebWrapperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/Source/WebWrapperView.swift -------------------------------------------------------------------------------- /ec3730/Views/TappedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/TappedText.swift -------------------------------------------------------------------------------- /ec3730/Views/UIViewControllerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/UIViewControllerView.swift -------------------------------------------------------------------------------- /ec3730/Views/WebkitOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/Views/WebkitOverlayView.swift -------------------------------------------------------------------------------- /ec3730/WhoisLockedTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/WhoisLockedTableViewCell.swift -------------------------------------------------------------------------------- /ec3730/WiFiSSID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/WiFiSSID.swift -------------------------------------------------------------------------------- /ec3730/ec3730.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730/ec3730.entitlements -------------------------------------------------------------------------------- /ec3730Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730Tests/Info.plist -------------------------------------------------------------------------------- /ec3730Tests/ec3730Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730Tests/ec3730Tests.swift -------------------------------------------------------------------------------- /ec3730UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730UITests/Info.plist -------------------------------------------------------------------------------- /ec3730UITests/ec3730UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/ec3730UITests/ec3730UITests.swift -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/Deliverfile.swift -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | Zachary Gorak 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/metadata/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | http://zac.gorak.us/ios 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | NetUtils 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | http://zac.gorak.us/ios/privacy.html 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/promotional_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/metadata/en-US/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Network Utilities 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | http://zac.gorak.us/ios 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | zac@gorak.us 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | Zachary 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | Gorak 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- 1 | Source code: https://github.com/twodayslate/NetUtils 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/screenshots/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/fastlane/screenshots/README.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/icon.png -------------------------------------------------------------------------------- /icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/icon.psd -------------------------------------------------------------------------------- /settings_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/settings_icon.psd -------------------------------------------------------------------------------- /whoisxml.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/NetUtils/HEAD/whoisxml.schema --------------------------------------------------------------------------------