├── .gitignore ├── 5GUIs.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── 5GUIs ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 5GUIs-1024.png │ │ ├── 5GUIs-128.png │ │ ├── 5GUIs-128@2x.png │ │ ├── 5GUIs-256.png │ │ ├── 5GUIs-256@2x.png │ │ ├── 5GUIs-512.png │ │ ├── 5GUIs-64.png │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── _GUIs.entitlements ├── LICENSE ├── LLVM ├── LLVM-LICENSE.TXT └── llvm-objdump.entitlements ├── README.md └── Sources └── 5GUIs ├── AppDelegate.swift ├── Model ├── DetectedTechnologies.swift ├── ExecutableFileTechnologyInfo.swift ├── FakeDetectionStepper.swift ├── FakeStepConfigs.swift ├── FileDetectionState.swift ├── InfoDict.swift └── LoadBundleImage.swift ├── README.md ├── Style.swift ├── Utilities ├── OTool.swift ├── ProcessHelper.swift ├── URLItems.swift └── WindowEnvironmentKey.swift ├── Views ├── ContentView.swift ├── Reusable │ ├── PropertiesView.swift │ └── SpinnerView.swift └── Windows │ ├── InfoPanel │ └── InfoPanel.swift │ ├── LicenseWindow │ └── ThirdPartyLicensesView.swift │ └── MainWindow │ ├── DetailsPopover.swift │ ├── DetectionStepsView.swift │ ├── MainFileView.swift │ ├── PleaseDropAFileView.swift │ ├── SorryNotAnExecutableView.swift │ └── SummaryView.swift ├── WindowState.swift └── Windows.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/.gitignore -------------------------------------------------------------------------------- /5GUIs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5GUIs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5GUIs.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-1024.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-128.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-128@2x.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-256.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-256@2x.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-512.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/5GUIs-64.png -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /5GUIs/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /5GUIs/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5GUIs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Info.plist -------------------------------------------------------------------------------- /5GUIs/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /5GUIs/_GUIs.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/5GUIs/_GUIs.entitlements -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/LICENSE -------------------------------------------------------------------------------- /LLVM/LLVM-LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/LLVM/LLVM-LICENSE.TXT -------------------------------------------------------------------------------- /LLVM/llvm-objdump.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/LLVM/llvm-objdump.entitlements -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/README.md -------------------------------------------------------------------------------- /Sources/5GUIs/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/AppDelegate.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/DetectedTechnologies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/DetectedTechnologies.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/ExecutableFileTechnologyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/ExecutableFileTechnologyInfo.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/FakeDetectionStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/FakeDetectionStepper.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/FakeStepConfigs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/FakeStepConfigs.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/FileDetectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/FileDetectionState.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/InfoDict.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/InfoDict.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Model/LoadBundleImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Model/LoadBundleImage.swift -------------------------------------------------------------------------------- /Sources/5GUIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/README.md -------------------------------------------------------------------------------- /Sources/5GUIs/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Style.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Utilities/OTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Utilities/OTool.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Utilities/ProcessHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Utilities/ProcessHelper.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Utilities/URLItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Utilities/URLItems.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Utilities/WindowEnvironmentKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Utilities/WindowEnvironmentKey.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/ContentView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Reusable/PropertiesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Reusable/PropertiesView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Reusable/SpinnerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Reusable/SpinnerView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/InfoPanel/InfoPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/InfoPanel/InfoPanel.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/LicenseWindow/ThirdPartyLicensesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/LicenseWindow/ThirdPartyLicensesView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/DetectionStepsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/DetectionStepsView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/MainFileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/MainFileView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/PleaseDropAFileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/PleaseDropAFileView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/SorryNotAnExecutableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/SorryNotAnExecutableView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Views/Windows/MainWindow/SummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Views/Windows/MainWindow/SummaryView.swift -------------------------------------------------------------------------------- /Sources/5GUIs/WindowState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/WindowState.swift -------------------------------------------------------------------------------- /Sources/5GUIs/Windows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/5GUIs/HEAD/Sources/5GUIs/Windows.swift --------------------------------------------------------------------------------