├── .drstring.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml └── workflows │ ├── build.yml │ ├── draft_new_release.yml │ ├── linting.yml │ └── unit_tests.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── CHANGELOG.md ├── ExportOptions.plist ├── LICENSE ├── Low Profile Tests └── LowProfileTests.swift ├── Low Profile.dmg.recipe.yaml ├── Low Profile.pkg.recipe.yaml ├── Low Profile.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── Low Profile Tests.xcscheme │ └── Low Profile.xcscheme ├── Low Profile ├── AppCommands.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Certificate.imageset │ │ ├── Certificate.png │ │ └── Contents.json │ ├── Contents.json │ └── Payloads │ │ ├── ACME Certificate.imageset │ │ ├── ACME Certificate.png │ │ └── Contents.json │ │ ├── AIM.imageset │ │ ├── AIM.png │ │ └── Contents.json │ │ ├── APN.imageset │ │ ├── APN.png │ │ └── Contents.json │ │ ├── Accessibility.imageset │ │ ├── Accessibility.png │ │ └── Contents.json │ │ ├── Active Directory Certificate.imageset │ │ ├── Active Directory Certificate.png │ │ └── Contents.json │ │ ├── AirPlay Security.imageset │ │ ├── AirPlay Security.png │ │ └── Contents.json │ │ ├── AirPlay.imageset │ │ ├── AirPlay.png │ │ └── Contents.json │ │ ├── AirPrint.imageset │ │ ├── AirPrint.png │ │ └── Contents.json │ │ ├── App Store.imageset │ │ ├── App Store.png │ │ └── Contents.json │ │ ├── Associated Domains.imageset │ │ ├── Associated Domains.png │ │ └── Contents.json │ │ ├── Autonomous Single App Mode.imageset │ │ ├── Autonomous Single App Mode.png │ │ └── Contents.json │ │ ├── Calendar.imageset │ │ ├── Calendar.png │ │ └── Contents.json │ │ ├── Cellular Private Network.imageset │ │ ├── Cellular Private Network.png │ │ └── Contents.json │ │ ├── Cellular.imageset │ │ ├── Cellular.png │ │ └── Contents.json │ │ ├── Certificate (PEM).imageset │ │ ├── Certificate (PEM).png │ │ └── Contents.json │ │ ├── Certificate (PKCS1).imageset │ │ ├── Certificate (PKCS1).png │ │ └── Contents.json │ │ ├── Certificate (PKCS12).imageset │ │ ├── Certificate (PKCS12).png │ │ └── Contents.json │ │ ├── Certificate (Root).imageset │ │ ├── Certificate (Root).png │ │ └── Contents.json │ │ ├── Certificate Preference.imageset │ │ ├── Certificate Preference.png │ │ └── Contents.json │ │ ├── Certificate Revocation.imageset │ │ ├── Certificate Revocation.png │ │ └── Contents.json │ │ ├── Certificate Transparency.imageset │ │ ├── Certificate Transparency.png │ │ └── Contents.json │ │ ├── Conference Room Display.imageset │ │ ├── Conference Room Display.png │ │ └── Contents.json │ │ ├── Contacts.imageset │ │ ├── Contacts.png │ │ └── Contents.json │ │ ├── Content Caching.imageset │ │ ├── Content Caching.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Custom.imageset │ │ ├── Contents.json │ │ └── Custom.png │ │ ├── DNS Proxy.imageset │ │ ├── Contents.json │ │ └── DNS Proxy.png │ │ ├── DNS Settings.imageset │ │ ├── Contents.json │ │ └── DNS Settings.png │ │ ├── Declarations.imageset │ │ ├── Contents.json │ │ └── Declarations.png │ │ ├── Desktop.imageset │ │ ├── Contents.json │ │ └── Desktop.png │ │ ├── Directory.imageset │ │ ├── Contents.json │ │ └── Directory.png │ │ ├── Disc Burning.imageset │ │ ├── Contents.json │ │ └── Disc Burning.png │ │ ├── Dock.imageset │ │ ├── Contents.json │ │ └── Dock.png │ │ ├── Domains.imageset │ │ ├── Contents.json │ │ └── Domains.png │ │ ├── Education.imageset │ │ ├── Contents.json │ │ └── Education.png │ │ ├── Exchange ActiveSync (EAS).imageset │ │ ├── Contents.json │ │ └── Exchange ActiveSync (EAS).png │ │ ├── Exchange Web Service (EWS).imageset │ │ ├── Contents.json │ │ └── Exchange Web Service (EWS).png │ │ ├── Extensions (Single Sign-On).imageset │ │ ├── Contents.json │ │ └── Extensions (Single Sign-On).png │ │ ├── Extensions.imageset │ │ ├── Contents.json │ │ └── Extensions.png │ │ ├── File Provider.imageset │ │ ├── Contents.json │ │ └── File Provider.png │ │ ├── FileVault Recovery Key Escrow.imageset │ │ ├── Contents.json │ │ └── FileVault Recovery Key Escrow.png │ │ ├── FileVault Recovery Key Redirection.imageset │ │ ├── Contents.json │ │ └── FileVault Recovery Key Redirection.png │ │ ├── FileVault.imageset │ │ ├── Contents.json │ │ └── FileVault.png │ │ ├── Finder.imageset │ │ ├── Contents.json │ │ └── Finder.png │ │ ├── Firewall.imageset │ │ ├── Contents.json │ │ └── Firewall.png │ │ ├── First Active Ethernet.imageset │ │ ├── Contents.json │ │ └── First Active Ethernet.png │ │ ├── First Ethernet.imageset │ │ ├── Contents.json │ │ └── First Ethernet.png │ │ ├── Font.imageset │ │ ├── Contents.json │ │ └── Font.png │ │ ├── General.imageset │ │ ├── Contents.json │ │ └── General.png │ │ ├── Global Ethernet.imageset │ │ ├── Contents.json │ │ └── Global Ethernet.png │ │ ├── Global HTTP Proxy.imageset │ │ ├── Contents.json │ │ └── Global HTTP Proxy.png │ │ ├── Global Preferences.imageset │ │ ├── Contents.json │ │ └── Global Preferences.png │ │ ├── Google.imageset │ │ ├── Contents.json │ │ └── Google.png │ │ ├── Home Screen Layout.imageset │ │ ├── Contents.json │ │ └── Home Screen Layout.png │ │ ├── Identification.imageset │ │ ├── Contents.json │ │ └── Identification.png │ │ ├── Identity Preference.imageset │ │ ├── Contents.json │ │ └── Identity Preference.png │ │ ├── Jabber.imageset │ │ ├── Contents.json │ │ └── Jabber.png │ │ ├── LDAP.imageset │ │ ├── Contents.json │ │ └── LDAP.png │ │ ├── Lights-Out Management (LOM).imageset │ │ ├── Contents.json │ │ └── Lights-Out Management (LOM).png │ │ ├── Lock Screen Message.imageset │ │ ├── Contents.json │ │ └── Lock Screen Message.png │ │ ├── Login Items.imageset │ │ ├── Contents.json │ │ └── Login Items.png │ │ ├── Login Window Login Items.imageset │ │ ├── Contents.json │ │ └── Login Window Login Items.png │ │ ├── Login Window Scripts.imageset │ │ ├── Contents.json │ │ └── Login Window Scripts.png │ │ ├── Login Window.imageset │ │ ├── Contents.json │ │ └── Login Window.png │ │ ├── MDM.imageset │ │ ├── Contents.json │ │ └── MDM.png │ │ ├── Mail.imageset │ │ ├── Contents.json │ │ └── Mail.png │ │ ├── Managed Client (MCX).imageset │ │ ├── Contents.json │ │ └── Managed Client (MCX).png │ │ ├── Managed Login Items.imageset │ │ ├── Contents.json │ │ └── Managed Login Items.png │ │ ├── Managed Preferences.imageset │ │ ├── Contents.json │ │ └── Managed Preferences.png │ │ ├── Media Management.imageset │ │ ├── Contents.json │ │ └── Media Management.png │ │ ├── Menu Extras.imageset │ │ ├── Contents.json │ │ └── Menu Extras.png │ │ ├── Network Proxy.imageset │ │ ├── Contents.json │ │ └── Network Proxy.png │ │ ├── Network Usage Rules.imageset │ │ ├── Contents.json │ │ └── Network Usage Rules.png │ │ ├── Notifications.imageset │ │ ├── Contents.json │ │ └── Notifications.png │ │ ├── Parental Controls (Apps).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Apps).png │ │ ├── Parental Controls (Content Filter).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Content Filter).png │ │ ├── Parental Controls (Dashboard).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Dashboard).png │ │ ├── Parental Controls (Dictation & Profanity).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Dictation & Profanity).png │ │ ├── Parental Controls (Dictionary).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Dictionary).png │ │ ├── Parental Controls (Game Center).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Game Center).png │ │ ├── Parental Controls (Time Limits).imageset │ │ ├── Contents.json │ │ └── Parental Controls (Time Limits).png │ │ ├── Passcode.imageset │ │ ├── Contents.json │ │ └── Passcode.png │ │ ├── Printing.imageset │ │ ├── Contents.json │ │ └── Printing.png │ │ ├── Privacy Preferences Policy Control (PPPC).imageset │ │ ├── Contents.json │ │ └── Privacy Preferences Policy Control (PPPC).png │ │ ├── Profile Removal.imageset │ │ ├── Contents.json │ │ └── Profile Removal.png │ │ ├── Relay.imageset │ │ ├── Contents.json │ │ └── Relay.png │ │ ├── Restrictions.imageset │ │ ├── Contents.json │ │ └── Restrictions.png │ │ ├── SCEP.imageset │ │ ├── Contents.json │ │ └── SCEP.png │ │ ├── Screen Saver (User).imageset │ │ ├── Contents.json │ │ └── Screen Saver (User).png │ │ ├── Screen Saver.imageset │ │ ├── Contents.json │ │ └── Screen Saver.png │ │ ├── Second Active Ethernet.imageset │ │ ├── Contents.json │ │ └── Second Active Ethernet.png │ │ ├── Second Ethernet.imageset │ │ ├── Contents.json │ │ └── Second Ethernet.png │ │ ├── Security Preferences.imageset │ │ ├── Contents.json │ │ └── Security Preferences.png │ │ ├── Setup Assistant.imageset │ │ ├── Contents.json │ │ └── Setup Assistant.png │ │ ├── ShareKit.imageset │ │ ├── Contents.json │ │ └── ShareKit.png │ │ ├── Single App Mode.imageset │ │ ├── Contents.json │ │ └── Single App Mode.png │ │ ├── Single Sign-On.imageset │ │ ├── Contents.json │ │ └── Single Sign-On.png │ │ ├── Smart Card.imageset │ │ ├── Contents.json │ │ └── Smart Card.png │ │ ├── Software Update.imageset │ │ ├── Contents.json │ │ └── Software Update.png │ │ ├── Subscribed Calendars.imageset │ │ ├── Contents.json │ │ └── Subscribed Calendars.png │ │ ├── System Extensions.imageset │ │ ├── Contents.json │ │ └── System Extensions.png │ │ ├── System Logging.imageset │ │ ├── Contents.json │ │ └── System Logging.png │ │ ├── System Migration.imageset │ │ ├── Contents.json │ │ └── System Migration.png │ │ ├── System Policy (Control).imageset │ │ ├── Contents.json │ │ └── System Policy (Control).png │ │ ├── System Policy (Kernel Extensions).imageset │ │ ├── Contents.json │ │ └── System Policy (Kernel Extensions).png │ │ ├── System Policy (Managed).imageset │ │ ├── Contents.json │ │ └── System Policy (Managed).png │ │ ├── System Policy (Rule).imageset │ │ ├── Contents.json │ │ └── System Policy (Rule).png │ │ ├── System Preferences.imageset │ │ ├── Contents.json │ │ └── System Preferences.png │ │ ├── TV Remote.imageset │ │ ├── Contents.json │ │ └── TV Remote.png │ │ ├── Third Active Ethernet.imageset │ │ ├── Contents.json │ │ └── Third Active Ethernet.png │ │ ├── Third Ethernet.imageset │ │ ├── Contents.json │ │ └── Third Ethernet.png │ │ ├── Time Machine.imageset │ │ ├── Contents.json │ │ └── Time Machine.png │ │ ├── User Preferences.imageset │ │ ├── Contents.json │ │ └── User Preferences.png │ │ ├── VPN (App Layer).imageset │ │ ├── Contents.json │ │ └── VPN (App Layer).png │ │ ├── VPN (App Mapping).imageset │ │ ├── Contents.json │ │ └── VPN (App Mapping).png │ │ ├── VPN.imageset │ │ ├── Contents.json │ │ └── VPN.png │ │ ├── Web Clips.imageset │ │ ├── Contents.json │ │ └── Web Clips.png │ │ ├── Web Content Filter.imageset │ │ ├── Contents.json │ │ └── Web Content Filter.png │ │ ├── Wi-Fi Preferences.imageset │ │ ├── Contents.json │ │ └── Wi-Fi Preferences.png │ │ ├── Wi-Fi.imageset │ │ ├── Contents.json │ │ └── Wi-Fi.png │ │ ├── Xsan Preferences.imageset │ │ ├── Contents.json │ │ └── Xsan Preferences.png │ │ ├── Xsan.imageset │ │ ├── Contents.json │ │ └── Xsan.png │ │ └── macOS Server.imageset │ │ ├── Contents.json │ │ └── macOS Server.png ├── DocumentError.swift ├── Extensions │ ├── Highlightr+Extension.swift │ ├── String+Extension.swift │ └── UTType+Extension.swift ├── Helpers │ ├── IssuesHelper.swift │ ├── PayloadHelper.swift │ ├── ProfileHelper.swift │ └── SparkleUpdater.swift ├── Info.plist ├── Low Profile.icon │ ├── Assets │ │ └── Low Profile.png │ └── icon.json ├── LowProfileApp.swift ├── Model │ ├── Availability.swift │ ├── Issue.swift │ ├── IssueType.swift │ ├── Payload.swift │ ├── Platform.swift │ ├── Profile.swift │ ├── Property.swift │ └── PropertySection.swift ├── Payloads.yaml ├── ProfileDocument.swift ├── ReportDocument.swift └── Views │ ├── AttributedText.swift │ ├── Certificate.swift │ ├── ContentView.swift │ ├── CustomValue.swift │ ├── Detail │ ├── Detail.swift │ ├── DetailCertificates.swift │ ├── DetailDiscussion.swift │ ├── DetailHeading.swift │ ├── DetailHighLevel.swift │ ├── DetailInformation.swift │ ├── DetailPropertyList.swift │ ├── DetailTab.swift │ └── Payload Properties │ │ ├── DetailPayloadProperties.swift │ │ ├── DetailPayloadPropertiesLeading.swift │ │ ├── DetailPayloadPropertiesMetadata.swift │ │ └── DetailPayloadPropertiesTrailing.swift │ ├── InformationGridRow.swift │ ├── Issues │ ├── IssuesDetailPayloadsView.swift │ ├── IssuesDetailProfilesView.swift │ ├── IssuesHeadingView.swift │ └── IssuesView.swift │ ├── PlatformImage.swift │ ├── ProfileDocumentView.swift │ ├── RefreshView.swift │ ├── ReportDocumentView.swift │ ├── Results │ ├── ResultsKeyView.swift │ ├── ResultsTitleView.swift │ └── ResultsValueView.swift │ ├── ScaledImage.swift │ ├── ScaledSystemImage.swift │ ├── Settings │ ├── SettingsAboutView.swift │ ├── SettingsGeneralView.swift │ ├── SettingsSyntaxHighlightingView.swift │ └── SettingsView.swift │ ├── Sidebar │ ├── SidebarPayloadRow.swift │ └── SidebarProfileRow.swift │ └── TextTag.swift ├── README Resources ├── App Icon.png ├── Certificate.png ├── Custom.png ├── Example.mobileconfig ├── Example.png ├── Issues.png ├── Managed Preferences.png ├── Payload.png ├── Property List.png └── Slack.png ├── README.md └── appcast.xml /.drstring.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.drstring.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: false 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/draft_new_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/workflows/draft_new_release.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.10.1 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/ExportOptions.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/LICENSE -------------------------------------------------------------------------------- /Low Profile Tests/LowProfileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile Tests/LowProfileTests.swift -------------------------------------------------------------------------------- /Low Profile.dmg.recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.dmg.recipe.yaml -------------------------------------------------------------------------------- /Low Profile.pkg.recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.pkg.recipe.yaml -------------------------------------------------------------------------------- /Low Profile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Low Profile.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Low Profile.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Low Profile.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Low Profile.xcodeproj/xcshareddata/xcschemes/Low Profile Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/xcshareddata/xcschemes/Low Profile Tests.xcscheme -------------------------------------------------------------------------------- /Low Profile.xcodeproj/xcshareddata/xcschemes/Low Profile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile.xcodeproj/xcshareddata/xcschemes/Low Profile.xcscheme -------------------------------------------------------------------------------- /Low Profile/AppCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/AppCommands.swift -------------------------------------------------------------------------------- /Low Profile/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/AppDelegate.swift -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Certificate.imageset/Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Certificate.imageset/Certificate.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Certificate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Certificate.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/ACME Certificate.imageset/ACME Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/ACME Certificate.imageset/ACME Certificate.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/ACME Certificate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/ACME Certificate.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AIM.imageset/AIM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AIM.imageset/AIM.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AIM.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AIM.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/APN.imageset/APN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/APN.imageset/APN.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/APN.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/APN.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Accessibility.imageset/Accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Accessibility.imageset/Accessibility.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Accessibility.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Accessibility.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Active Directory Certificate.imageset/Active Directory Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Active Directory Certificate.imageset/Active Directory Certificate.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Active Directory Certificate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Active Directory Certificate.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPlay Security.imageset/AirPlay Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPlay Security.imageset/AirPlay Security.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPlay Security.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPlay Security.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPlay.imageset/AirPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPlay.imageset/AirPlay.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPlay.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPrint.imageset/AirPrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPrint.imageset/AirPrint.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/AirPrint.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/AirPrint.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/App Store.imageset/App Store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/App Store.imageset/App Store.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/App Store.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/App Store.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Associated Domains.imageset/Associated Domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Associated Domains.imageset/Associated Domains.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Associated Domains.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Associated Domains.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Autonomous Single App Mode.imageset/Autonomous Single App Mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Autonomous Single App Mode.imageset/Autonomous Single App Mode.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Autonomous Single App Mode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Autonomous Single App Mode.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Calendar.imageset/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Calendar.imageset/Calendar.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Calendar.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Cellular Private Network.imageset/Cellular Private Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Cellular Private Network.imageset/Cellular Private Network.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Cellular Private Network.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Cellular Private Network.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Cellular.imageset/Cellular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Cellular.imageset/Cellular.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Cellular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Cellular.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PEM).imageset/Certificate (PEM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PEM).imageset/Certificate (PEM).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PEM).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PEM).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PKCS1).imageset/Certificate (PKCS1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PKCS1).imageset/Certificate (PKCS1).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PKCS1).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PKCS1).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PKCS12).imageset/Certificate (PKCS12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PKCS12).imageset/Certificate (PKCS12).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (PKCS12).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (PKCS12).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (Root).imageset/Certificate (Root).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (Root).imageset/Certificate (Root).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate (Root).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate (Root).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Preference.imageset/Certificate Preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Preference.imageset/Certificate Preference.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Preference.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Preference.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Revocation.imageset/Certificate Revocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Revocation.imageset/Certificate Revocation.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Revocation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Revocation.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Transparency.imageset/Certificate Transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Transparency.imageset/Certificate Transparency.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Certificate Transparency.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Certificate Transparency.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Conference Room Display.imageset/Conference Room Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Conference Room Display.imageset/Conference Room Display.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Conference Room Display.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Conference Room Display.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Contacts.imageset/Contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Contacts.imageset/Contacts.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Contacts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Contacts.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Content Caching.imageset/Content Caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Content Caching.imageset/Content Caching.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Content Caching.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Content Caching.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Custom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Custom.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Custom.imageset/Custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Custom.imageset/Custom.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/DNS Proxy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/DNS Proxy.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/DNS Proxy.imageset/DNS Proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/DNS Proxy.imageset/DNS Proxy.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/DNS Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/DNS Settings.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/DNS Settings.imageset/DNS Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/DNS Settings.imageset/DNS Settings.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Declarations.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Declarations.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Declarations.imageset/Declarations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Declarations.imageset/Declarations.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Desktop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Desktop.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Desktop.imageset/Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Desktop.imageset/Desktop.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Directory.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Directory.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Directory.imageset/Directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Directory.imageset/Directory.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Disc Burning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Disc Burning.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Disc Burning.imageset/Disc Burning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Disc Burning.imageset/Disc Burning.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Dock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Dock.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Dock.imageset/Dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Dock.imageset/Dock.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Domains.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Domains.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Domains.imageset/Domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Domains.imageset/Domains.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Education.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Education.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Education.imageset/Education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Education.imageset/Education.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Exchange ActiveSync (EAS).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Exchange ActiveSync (EAS).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Exchange ActiveSync (EAS).imageset/Exchange ActiveSync (EAS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Exchange ActiveSync (EAS).imageset/Exchange ActiveSync (EAS).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Exchange Web Service (EWS).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Exchange Web Service (EWS).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Exchange Web Service (EWS).imageset/Exchange Web Service (EWS).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Exchange Web Service (EWS).imageset/Exchange Web Service (EWS).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Extensions (Single Sign-On).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Extensions (Single Sign-On).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Extensions (Single Sign-On).imageset/Extensions (Single Sign-On).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Extensions (Single Sign-On).imageset/Extensions (Single Sign-On).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Extensions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Extensions.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Extensions.imageset/Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Extensions.imageset/Extensions.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/File Provider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/File Provider.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/File Provider.imageset/File Provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/File Provider.imageset/File Provider.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Escrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Escrow.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Escrow.imageset/FileVault Recovery Key Escrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Escrow.imageset/FileVault Recovery Key Escrow.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Redirection.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Redirection.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Redirection.imageset/FileVault Recovery Key Redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault Recovery Key Redirection.imageset/FileVault Recovery Key Redirection.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/FileVault.imageset/FileVault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/FileVault.imageset/FileVault.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Finder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Finder.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Finder.imageset/Finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Finder.imageset/Finder.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Firewall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Firewall.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Firewall.imageset/Firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Firewall.imageset/Firewall.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/First Active Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/First Active Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/First Active Ethernet.imageset/First Active Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/First Active Ethernet.imageset/First Active Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/First Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/First Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/First Ethernet.imageset/First Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/First Ethernet.imageset/First Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Font.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Font.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Font.imageset/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Font.imageset/Font.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/General.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/General.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/General.imageset/General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/General.imageset/General.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global Ethernet.imageset/Global Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global Ethernet.imageset/Global Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global HTTP Proxy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global HTTP Proxy.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global HTTP Proxy.imageset/Global HTTP Proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global HTTP Proxy.imageset/Global HTTP Proxy.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Global Preferences.imageset/Global Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Global Preferences.imageset/Global Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Google.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Google.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Google.imageset/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Google.imageset/Google.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Home Screen Layout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Home Screen Layout.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Home Screen Layout.imageset/Home Screen Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Home Screen Layout.imageset/Home Screen Layout.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Identification.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Identification.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Identification.imageset/Identification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Identification.imageset/Identification.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Identity Preference.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Identity Preference.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Identity Preference.imageset/Identity Preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Identity Preference.imageset/Identity Preference.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Jabber.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Jabber.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Jabber.imageset/Jabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Jabber.imageset/Jabber.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/LDAP.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/LDAP.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/LDAP.imageset/LDAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/LDAP.imageset/LDAP.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Lights-Out Management (LOM).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Lights-Out Management (LOM).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Lights-Out Management (LOM).imageset/Lights-Out Management (LOM).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Lights-Out Management (LOM).imageset/Lights-Out Management (LOM).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Lock Screen Message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Lock Screen Message.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Lock Screen Message.imageset/Lock Screen Message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Lock Screen Message.imageset/Lock Screen Message.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Items.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Items.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Items.imageset/Login Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Items.imageset/Login Items.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window Login Items.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window Login Items.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window Login Items.imageset/Login Window Login Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window Login Items.imageset/Login Window Login Items.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window Scripts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window Scripts.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window Scripts.imageset/Login Window Scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window Scripts.imageset/Login Window Scripts.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Login Window.imageset/Login Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Login Window.imageset/Login Window.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/MDM.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/MDM.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/MDM.imageset/MDM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/MDM.imageset/MDM.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Mail.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Mail.imageset/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Mail.imageset/Mail.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Client (MCX).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Client (MCX).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Client (MCX).imageset/Managed Client (MCX).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Client (MCX).imageset/Managed Client (MCX).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Login Items.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Login Items.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Login Items.imageset/Managed Login Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Login Items.imageset/Managed Login Items.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Managed Preferences.imageset/Managed Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Managed Preferences.imageset/Managed Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Media Management.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Media Management.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Media Management.imageset/Media Management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Media Management.imageset/Media Management.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Menu Extras.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Menu Extras.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Menu Extras.imageset/Menu Extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Menu Extras.imageset/Menu Extras.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Network Proxy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Network Proxy.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Network Proxy.imageset/Network Proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Network Proxy.imageset/Network Proxy.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Network Usage Rules.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Network Usage Rules.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Network Usage Rules.imageset/Network Usage Rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Network Usage Rules.imageset/Network Usage Rules.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Notifications.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Notifications.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Notifications.imageset/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Notifications.imageset/Notifications.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Apps).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Apps).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Apps).imageset/Parental Controls (Apps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Apps).imageset/Parental Controls (Apps).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Content Filter).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Content Filter).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Content Filter).imageset/Parental Controls (Content Filter).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Content Filter).imageset/Parental Controls (Content Filter).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dashboard).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dashboard).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dashboard).imageset/Parental Controls (Dashboard).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dashboard).imageset/Parental Controls (Dashboard).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictation & Profanity).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictation & Profanity).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictation & Profanity).imageset/Parental Controls (Dictation & Profanity).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictation & Profanity).imageset/Parental Controls (Dictation & Profanity).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictionary).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictionary).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictionary).imageset/Parental Controls (Dictionary).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Dictionary).imageset/Parental Controls (Dictionary).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Game Center).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Game Center).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Game Center).imageset/Parental Controls (Game Center).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Game Center).imageset/Parental Controls (Game Center).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Time Limits).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Time Limits).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Parental Controls (Time Limits).imageset/Parental Controls (Time Limits).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Parental Controls (Time Limits).imageset/Parental Controls (Time Limits).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Passcode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Passcode.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Passcode.imageset/Passcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Passcode.imageset/Passcode.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Printing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Printing.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Printing.imageset/Printing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Printing.imageset/Printing.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Privacy Preferences Policy Control (PPPC).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Privacy Preferences Policy Control (PPPC).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Privacy Preferences Policy Control (PPPC).imageset/Privacy Preferences Policy Control (PPPC).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Privacy Preferences Policy Control (PPPC).imageset/Privacy Preferences Policy Control (PPPC).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Profile Removal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Profile Removal.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Profile Removal.imageset/Profile Removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Profile Removal.imageset/Profile Removal.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Relay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Relay.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Relay.imageset/Relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Relay.imageset/Relay.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Restrictions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Restrictions.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Restrictions.imageset/Restrictions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Restrictions.imageset/Restrictions.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/SCEP.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/SCEP.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/SCEP.imageset/SCEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/SCEP.imageset/SCEP.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Screen Saver (User).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Screen Saver (User).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Screen Saver (User).imageset/Screen Saver (User).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Screen Saver (User).imageset/Screen Saver (User).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Screen Saver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Screen Saver.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Screen Saver.imageset/Screen Saver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Screen Saver.imageset/Screen Saver.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Second Active Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Second Active Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Second Active Ethernet.imageset/Second Active Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Second Active Ethernet.imageset/Second Active Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Second Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Second Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Second Ethernet.imageset/Second Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Second Ethernet.imageset/Second Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Security Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Security Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Security Preferences.imageset/Security Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Security Preferences.imageset/Security Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Setup Assistant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Setup Assistant.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Setup Assistant.imageset/Setup Assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Setup Assistant.imageset/Setup Assistant.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/ShareKit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/ShareKit.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/ShareKit.imageset/ShareKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/ShareKit.imageset/ShareKit.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Single App Mode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Single App Mode.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Single App Mode.imageset/Single App Mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Single App Mode.imageset/Single App Mode.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Single Sign-On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Single Sign-On.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Single Sign-On.imageset/Single Sign-On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Single Sign-On.imageset/Single Sign-On.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Smart Card.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Smart Card.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Smart Card.imageset/Smart Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Smart Card.imageset/Smart Card.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Software Update.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Software Update.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Software Update.imageset/Software Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Software Update.imageset/Software Update.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Subscribed Calendars.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Subscribed Calendars.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Subscribed Calendars.imageset/Subscribed Calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Subscribed Calendars.imageset/Subscribed Calendars.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Extensions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Extensions.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Extensions.imageset/System Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Extensions.imageset/System Extensions.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Logging.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Logging.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Logging.imageset/System Logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Logging.imageset/System Logging.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Migration.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Migration.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Migration.imageset/System Migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Migration.imageset/System Migration.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Control).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Control).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Control).imageset/System Policy (Control).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Control).imageset/System Policy (Control).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Kernel Extensions).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Kernel Extensions).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Kernel Extensions).imageset/System Policy (Kernel Extensions).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Kernel Extensions).imageset/System Policy (Kernel Extensions).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Managed).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Managed).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Managed).imageset/System Policy (Managed).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Managed).imageset/System Policy (Managed).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Rule).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Rule).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Policy (Rule).imageset/System Policy (Rule).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Policy (Rule).imageset/System Policy (Rule).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/System Preferences.imageset/System Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/System Preferences.imageset/System Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/TV Remote.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/TV Remote.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/TV Remote.imageset/TV Remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/TV Remote.imageset/TV Remote.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Third Active Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Third Active Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Third Active Ethernet.imageset/Third Active Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Third Active Ethernet.imageset/Third Active Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Third Ethernet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Third Ethernet.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Third Ethernet.imageset/Third Ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Third Ethernet.imageset/Third Ethernet.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Time Machine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Time Machine.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Time Machine.imageset/Time Machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Time Machine.imageset/Time Machine.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/User Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/User Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/User Preferences.imageset/User Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/User Preferences.imageset/User Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN (App Layer).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN (App Layer).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN (App Layer).imageset/VPN (App Layer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN (App Layer).imageset/VPN (App Layer).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN (App Mapping).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN (App Mapping).imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN (App Mapping).imageset/VPN (App Mapping).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN (App Mapping).imageset/VPN (App Mapping).png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/VPN.imageset/VPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/VPN.imageset/VPN.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Web Clips.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Web Clips.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Web Clips.imageset/Web Clips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Web Clips.imageset/Web Clips.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Web Content Filter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Web Content Filter.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Web Content Filter.imageset/Web Content Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Web Content Filter.imageset/Web Content Filter.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Wi-Fi Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Wi-Fi Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Wi-Fi Preferences.imageset/Wi-Fi Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Wi-Fi Preferences.imageset/Wi-Fi Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Wi-Fi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Wi-Fi.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Wi-Fi.imageset/Wi-Fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Wi-Fi.imageset/Wi-Fi.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Xsan Preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Xsan Preferences.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Xsan Preferences.imageset/Xsan Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Xsan Preferences.imageset/Xsan Preferences.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Xsan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Xsan.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/Xsan.imageset/Xsan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/Xsan.imageset/Xsan.png -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/macOS Server.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/macOS Server.imageset/Contents.json -------------------------------------------------------------------------------- /Low Profile/Assets.xcassets/Payloads/macOS Server.imageset/macOS Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Assets.xcassets/Payloads/macOS Server.imageset/macOS Server.png -------------------------------------------------------------------------------- /Low Profile/DocumentError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/DocumentError.swift -------------------------------------------------------------------------------- /Low Profile/Extensions/Highlightr+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Extensions/Highlightr+Extension.swift -------------------------------------------------------------------------------- /Low Profile/Extensions/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Extensions/String+Extension.swift -------------------------------------------------------------------------------- /Low Profile/Extensions/UTType+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Extensions/UTType+Extension.swift -------------------------------------------------------------------------------- /Low Profile/Helpers/IssuesHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Helpers/IssuesHelper.swift -------------------------------------------------------------------------------- /Low Profile/Helpers/PayloadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Helpers/PayloadHelper.swift -------------------------------------------------------------------------------- /Low Profile/Helpers/ProfileHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Helpers/ProfileHelper.swift -------------------------------------------------------------------------------- /Low Profile/Helpers/SparkleUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Helpers/SparkleUpdater.swift -------------------------------------------------------------------------------- /Low Profile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Info.plist -------------------------------------------------------------------------------- /Low Profile/Low Profile.icon/Assets/Low Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Low Profile.icon/Assets/Low Profile.png -------------------------------------------------------------------------------- /Low Profile/Low Profile.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Low Profile.icon/icon.json -------------------------------------------------------------------------------- /Low Profile/LowProfileApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/LowProfileApp.swift -------------------------------------------------------------------------------- /Low Profile/Model/Availability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Availability.swift -------------------------------------------------------------------------------- /Low Profile/Model/Issue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Issue.swift -------------------------------------------------------------------------------- /Low Profile/Model/IssueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/IssueType.swift -------------------------------------------------------------------------------- /Low Profile/Model/Payload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Payload.swift -------------------------------------------------------------------------------- /Low Profile/Model/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Platform.swift -------------------------------------------------------------------------------- /Low Profile/Model/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Profile.swift -------------------------------------------------------------------------------- /Low Profile/Model/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/Property.swift -------------------------------------------------------------------------------- /Low Profile/Model/PropertySection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Model/PropertySection.swift -------------------------------------------------------------------------------- /Low Profile/Payloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Payloads.yaml -------------------------------------------------------------------------------- /Low Profile/ProfileDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/ProfileDocument.swift -------------------------------------------------------------------------------- /Low Profile/ReportDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/ReportDocument.swift -------------------------------------------------------------------------------- /Low Profile/Views/AttributedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/AttributedText.swift -------------------------------------------------------------------------------- /Low Profile/Views/Certificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Certificate.swift -------------------------------------------------------------------------------- /Low Profile/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/ContentView.swift -------------------------------------------------------------------------------- /Low Profile/Views/CustomValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/CustomValue.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/Detail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/Detail.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailCertificates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailCertificates.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailDiscussion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailDiscussion.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailHeading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailHeading.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailHighLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailHighLevel.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailInformation.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailPropertyList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailPropertyList.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/DetailTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/DetailTab.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/Payload Properties/DetailPayloadProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/Payload Properties/DetailPayloadProperties.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesLeading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesLeading.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesMetadata.swift -------------------------------------------------------------------------------- /Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesTrailing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Detail/Payload Properties/DetailPayloadPropertiesTrailing.swift -------------------------------------------------------------------------------- /Low Profile/Views/InformationGridRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/InformationGridRow.swift -------------------------------------------------------------------------------- /Low Profile/Views/Issues/IssuesDetailPayloadsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Issues/IssuesDetailPayloadsView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Issues/IssuesDetailProfilesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Issues/IssuesDetailProfilesView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Issues/IssuesHeadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Issues/IssuesHeadingView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Issues/IssuesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Issues/IssuesView.swift -------------------------------------------------------------------------------- /Low Profile/Views/PlatformImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/PlatformImage.swift -------------------------------------------------------------------------------- /Low Profile/Views/ProfileDocumentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/ProfileDocumentView.swift -------------------------------------------------------------------------------- /Low Profile/Views/RefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/RefreshView.swift -------------------------------------------------------------------------------- /Low Profile/Views/ReportDocumentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/ReportDocumentView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Results/ResultsKeyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Results/ResultsKeyView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Results/ResultsTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Results/ResultsTitleView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Results/ResultsValueView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Results/ResultsValueView.swift -------------------------------------------------------------------------------- /Low Profile/Views/ScaledImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/ScaledImage.swift -------------------------------------------------------------------------------- /Low Profile/Views/ScaledSystemImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/ScaledSystemImage.swift -------------------------------------------------------------------------------- /Low Profile/Views/Settings/SettingsAboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Settings/SettingsAboutView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Settings/SettingsGeneralView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Settings/SettingsGeneralView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Settings/SettingsSyntaxHighlightingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Settings/SettingsSyntaxHighlightingView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /Low Profile/Views/Sidebar/SidebarPayloadRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Sidebar/SidebarPayloadRow.swift -------------------------------------------------------------------------------- /Low Profile/Views/Sidebar/SidebarProfileRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/Sidebar/SidebarProfileRow.swift -------------------------------------------------------------------------------- /Low Profile/Views/TextTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/Low Profile/Views/TextTag.swift -------------------------------------------------------------------------------- /README Resources/App Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/App Icon.png -------------------------------------------------------------------------------- /README Resources/Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Certificate.png -------------------------------------------------------------------------------- /README Resources/Custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Custom.png -------------------------------------------------------------------------------- /README Resources/Example.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Example.mobileconfig -------------------------------------------------------------------------------- /README Resources/Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Example.png -------------------------------------------------------------------------------- /README Resources/Issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Issues.png -------------------------------------------------------------------------------- /README Resources/Managed Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Managed Preferences.png -------------------------------------------------------------------------------- /README Resources/Payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Payload.png -------------------------------------------------------------------------------- /README Resources/Property List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Property List.png -------------------------------------------------------------------------------- /README Resources/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README Resources/Slack.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninxsoft/LowProfile/HEAD/appcast.xml --------------------------------------------------------------------------------