├── LICENSE ├── PixelPerfect ├── .gitignore ├── PixelPerfect.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Pixel Perfect.xcscheme ├── PixelPerfect │ ├── Extension │ │ ├── BundleExtension.swift │ │ ├── NSColor+RIUAlternatingColor.h │ │ ├── NSColor+RIUAlternatingColor.m │ │ ├── NSPanelExtension.swift │ │ ├── Process-Extension.swift │ │ └── StringExtension.swift │ ├── Localized │ │ ├── Base.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.storyboard │ │ ├── ar.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ca.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── cs.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── da.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── de.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── el.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en-AU.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en-GB.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en-IN.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── es-419.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fr-CA.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── he.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── hi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── hr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── hu.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── id.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── it.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ja.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ko.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ms.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nb.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pt-BR.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pt-PT.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ro.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ru.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sk.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sv.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── th.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── tr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── uk.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── vi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── zh-HK.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── zh-Hans.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ └── zh-Hant.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ ├── Support │ │ ├── Assets.xcassets │ │ │ ├── Colors │ │ │ │ ├── AlternateRowBackground.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BoxBorderColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── 128x128.png │ │ │ │ │ ├── 128x128@2x.png │ │ │ │ │ ├── 16x16.png │ │ │ │ │ ├── 16x16@2x.png │ │ │ │ │ ├── 256x256.png │ │ │ │ │ ├── 256x256@2x.png │ │ │ │ │ ├── 32x32.png │ │ │ │ │ ├── 32x32@2x.png │ │ │ │ │ ├── 512x512.png │ │ │ │ │ ├── 512x512@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── FullDiskAccess.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── FullDiskAccess.png │ │ │ │ └── GenericAppIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── GenericAppIcon.png │ │ │ └── Symbols │ │ │ │ ├── Contents.json │ │ │ │ └── iphone.and.ipad.fallback.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iphone.and.ipad.fallback.pdf │ │ ├── BundleMetadata.plist │ │ ├── Credits.rtf │ │ ├── Help.webloc │ │ ├── PixelPerfect-Bridging-Header.h │ │ ├── PixelPerfect-Info.plist │ │ ├── PixelPerfect.entitlements │ │ └── SupportPath.plist │ ├── Tools │ │ ├── Constants.swift │ │ ├── MPAuthorizationStatus.h │ │ ├── MPAuthorizer.h │ │ ├── MPFullDiskAccessAuthorizer.h │ │ ├── MPFullDiskAccessAuthorizer.m │ │ ├── QRCodeGenerator.swift │ │ ├── STPrivilegedTask.h │ │ ├── STPrivilegedTask.m │ │ ├── SystemHelper.h │ │ ├── SystemHelper.m │ │ ├── SystemInformation.swift │ │ └── iOSAppBundle.swift │ └── UI │ │ ├── AppDelegate.swift │ │ ├── AppExceptionTableCellView.swift │ │ ├── ExceptionViewController.swift │ │ ├── InstallationViewController.swift │ │ ├── SheetViewController.swift │ │ └── WindowController.swift ├── Screenshots │ ├── icon.png │ ├── resources │ │ ├── button.sketch │ │ ├── download-button.png │ │ └── release-button.png │ ├── screenshot-animation.gif │ ├── screenshot-apps.gif │ ├── screenshot-disabled.jpg │ ├── screenshot-enable-all.jpg │ ├── screenshot-enabled.jpg │ ├── screenshot-full-disk-access.jpg │ ├── screenshot-gatekeeper.jpg │ └── screenshot-overcast.gif └── TCCFixUp │ ├── NSObject+TCCFixUp.h │ ├── NSObject+TCCFixUp.m │ └── TCCFixUp.h └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/LICENSE -------------------------------------------------------------------------------- /PixelPerfect/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/.gitignore -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect.xcodeproj/xcshareddata/xcschemes/Pixel Perfect.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect.xcodeproj/xcshareddata/xcschemes/Pixel Perfect.xcscheme -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/BundleExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/BundleExtension.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/NSColor+RIUAlternatingColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/NSColor+RIUAlternatingColor.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/NSColor+RIUAlternatingColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/NSColor+RIUAlternatingColor.m -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/NSPanelExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/NSPanelExtension.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/Process-Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/Process-Extension.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Extension/StringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Extension/StringExtension.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ar.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ar.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ca.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ca.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ca.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/cs.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/cs.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/da.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/da.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/de.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/el.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/el.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-AU.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-AU.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-AU.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-AU.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-AU.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-AU.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-GB.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-GB.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-GB.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-IN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-IN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-IN.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en-IN.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en-IN.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/en.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es-419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es-419.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es-419.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es-419.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es-419.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es-419.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/es.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fi.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr-CA.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/fr.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/he.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/he.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hi.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hr.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/hu.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/hu.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/id.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/id.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/it.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/it.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ja.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ko.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ko.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ms.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ms.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ms.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nb.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nb.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/nl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/nl.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pl.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-BR.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/pt-PT.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ro.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ro.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/ru.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/ru.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sk.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sk.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/sv.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/sv.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/th.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/th.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/th.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/tr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/tr.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/uk.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/uk.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/vi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/vi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/vi.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-HK.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Localized/zh-Hant.lproj/Main.strings -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/AlternateRowBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/AlternateRowBackground.colorset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/BoxBorderColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/BoxBorderColor.colorset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/128x128.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/128x128@2x.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/16x16.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/16x16@2x.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/256x256.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/256x256@2x.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/32x32.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/32x32@2x.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/512x512.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/512x512@2x.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/FullDiskAccess.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/FullDiskAccess.imageset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/FullDiskAccess.imageset/FullDiskAccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/FullDiskAccess.imageset/FullDiskAccess.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/GenericAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/GenericAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/GenericAppIcon.imageset/GenericAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Icons/GenericAppIcon.imageset/GenericAppIcon.png -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/iphone.and.ipad.fallback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/iphone.and.ipad.fallback.imageset/Contents.json -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/iphone.and.ipad.fallback.imageset/iphone.and.ipad.fallback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Assets.xcassets/Symbols/iphone.and.ipad.fallback.imageset/iphone.and.ipad.fallback.pdf -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/BundleMetadata.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/BundleMetadata.plist -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Credits.rtf -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/Help.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/Help.webloc -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/PixelPerfect-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/PixelPerfect-Bridging-Header.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/PixelPerfect-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/PixelPerfect-Info.plist -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/PixelPerfect.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/PixelPerfect.entitlements -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Support/SupportPath.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Support/SupportPath.plist -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/Constants.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/MPAuthorizationStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/MPAuthorizationStatus.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/MPAuthorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/MPAuthorizer.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/MPFullDiskAccessAuthorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/MPFullDiskAccessAuthorizer.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/MPFullDiskAccessAuthorizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/MPFullDiskAccessAuthorizer.m -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/QRCodeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/QRCodeGenerator.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/STPrivilegedTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/STPrivilegedTask.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/STPrivilegedTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/STPrivilegedTask.m -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/SystemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/SystemHelper.h -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/SystemHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/SystemHelper.m -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/SystemInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/SystemInformation.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/Tools/iOSAppBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/Tools/iOSAppBundle.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/AppDelegate.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/AppExceptionTableCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/AppExceptionTableCellView.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/ExceptionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/ExceptionViewController.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/InstallationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/InstallationViewController.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/SheetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/SheetViewController.swift -------------------------------------------------------------------------------- /PixelPerfect/PixelPerfect/UI/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/PixelPerfect/UI/WindowController.swift -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/icon.png -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/resources/button.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/resources/button.sketch -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/resources/download-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/resources/download-button.png -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/resources/release-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/resources/release-button.png -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-animation.gif -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-apps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-apps.gif -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-disabled.jpg -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-enable-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-enable-all.jpg -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-enabled.jpg -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-full-disk-access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-full-disk-access.jpg -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-gatekeeper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-gatekeeper.jpg -------------------------------------------------------------------------------- /PixelPerfect/Screenshots/screenshot-overcast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/Screenshots/screenshot-overcast.gif -------------------------------------------------------------------------------- /PixelPerfect/TCCFixUp/NSObject+TCCFixUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/TCCFixUp/NSObject+TCCFixUp.h -------------------------------------------------------------------------------- /PixelPerfect/TCCFixUp/NSObject+TCCFixUp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/TCCFixUp/NSObject+TCCFixUp.m -------------------------------------------------------------------------------- /PixelPerfect/TCCFixUp/TCCFixUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/PixelPerfect/TCCFixUp/TCCFixUp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cormiertyshawn895/PixelPerfect/HEAD/README.md --------------------------------------------------------------------------------