├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── c_cpp_properties.json ├── DisplayMergeNub ├── DisplayMergeNub-Info.plist ├── DisplayMergeNub.cpp └── DisplayMergeNub.h ├── Frameworks └── Sparkle.framework │ ├── Autoupdate │ ├── Headers │ ├── Modules │ ├── PrivateHeaders │ ├── Resources │ ├── Sparkle │ ├── Updater.app │ ├── Versions │ ├── B │ │ ├── Autoupdate │ │ ├── Headers │ │ │ ├── SPUDownloadData.h │ │ │ ├── SPUStandardUpdaterController.h │ │ │ ├── SPUStandardUserDriver.h │ │ │ ├── SPUStandardUserDriverDelegate.h │ │ │ ├── SPUUpdateCheck.h │ │ │ ├── SPUUpdatePermissionRequest.h │ │ │ ├── SPUUpdater.h │ │ │ ├── SPUUpdaterDelegate.h │ │ │ ├── SPUUpdaterSettings.h │ │ │ ├── SPUUserDriver.h │ │ │ ├── SPUUserUpdateState.h │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUErrors.h │ │ │ ├── SUExport.h │ │ │ ├── SUStandardVersionComparator.h │ │ │ ├── SUUpdatePermissionResponse.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUUpdaterDelegate.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ ├── SPUAppcastItemStateResolver.h │ │ │ ├── SPUGentleUserDriverReminders.h │ │ │ ├── SPUInstallationType.h │ │ │ ├── SPUStandardUserDriver+Private.h │ │ │ ├── SPUUserAgent+Private.h │ │ │ ├── SUAppcastItem+Private.h │ │ │ └── SUInstallerLauncher+Private.h │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ └── keyedobjects-110000.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── Info.plist │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ ├── SUStatus.nib │ │ │ ├── ar.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ca.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fa.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── fi.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── he.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hu.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── is.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt-BR.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt-PT.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_HK.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ ├── Updater.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── Updater │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ └── SUStatus.nib │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── XPCServices │ │ │ ├── Downloader.xpc │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Downloader │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Installer.xpc │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── Installer │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── Current │ └── XPCServices ├── GfxUtil ├── efidevp.c ├── efidevp.h ├── utils.c └── utils.h ├── Hackintool.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── headsoft.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate │ │ └── jonas.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ ├── DisplayMergeNub.xcscheme │ └── Hackintool.xcscheme ├── Hackintool ├── AppDelegate.h ├── AppDelegate.m ├── AudioDevice.h ├── AudioDevice.m ├── AudioNode.h ├── AudioNode.m ├── Authorization.h ├── Authorization.m ├── BarTableRowView.h ├── BarTableRowView.m ├── Base.lproj │ ├── Credits.rtf │ └── MainMenu.xib ├── Clover.h ├── Clover.m ├── Config.h ├── Config.m ├── DMManager.h ├── Disk.h ├── Disk.m ├── DiskUtilities.h ├── DiskUtilities.m ├── Display.h ├── Display.m ├── FBUtilities.h ├── FBUtilities.m ├── FixEDID.h ├── FixEDID.m ├── Hackintool-Info.plist ├── Hackintool-Prefix.pch ├── IORegTools.h ├── IORegTools.m ├── IntelFramebuffer.h ├── IntelFramebuffer.m ├── Localizer.h ├── Localizer.m ├── MiscTools.h ├── MiscTools.m ├── NSColor+Pin.h ├── NSColor+Pin.m ├── NSPinCellView.h ├── NSPinCellView.m ├── NSString+Pin.h ├── NSString+Pin.m ├── NSTabViewImage.h ├── NSTabViewImage.m ├── NVRAMXmlParser.h ├── NVRAMXmlParser.m ├── OpenCore.h ├── OpenCore.m ├── PCIMonitor.h ├── PCIMonitor.m ├── Resolution.h ├── Resolution.m ├── USB.h ├── USB.m ├── VDADecoderChecker.cpp ├── VDADecoderChecker.h ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── main.m ├── pt-BR.lproj │ ├── Localizable.strings │ └── MainMenu.strings ├── ru.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── uk.lproj │ └── Localizable.strings └── zh-Hans.lproj │ ├── Credits.rtf │ └── Localizable.strings ├── LICENSE.md ├── MacSerial ├── UserPseudoRandom.c ├── UserPseudoRandom.h ├── macserial.c ├── macserial.h ├── modelinfo.h └── modelinfo_autogen.h ├── Media.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-1024.png │ ├── Icon-128.png │ ├── Icon-16.png │ ├── Icon-256.png │ ├── Icon-32.png │ ├── Icon-512.png │ └── Icon-64.png ├── BannerEveryMac.imageset │ ├── BannerEveryMac.png │ └── Contents.json ├── BenBakerLogo.imageset │ ├── BenBakerLogoSmall.png │ └── Contents.json ├── Contents.json ├── HeadsoftLogo.imageset │ ├── Contents.json │ └── HeasoftLogoSmall.png ├── IconAdd.imageset │ ├── Contents.json │ ├── IconAdd@1x.png │ ├── IconAdd@2x.png │ └── IconAdd@3x.png ├── IconApp.imageset │ ├── Contents.json │ ├── Icon-128.png │ ├── Icon-256.png │ └── Icon-512.png ├── IconAtheros.imageset │ ├── Contents.json │ ├── IconAtheros@1x.png │ ├── IconAtheros@2x.png │ └── IconAtheros@3x.png ├── IconAudio.imageset │ ├── Contents.json │ ├── IconAudio@1x.png │ ├── IconAudio@2x.png │ └── IconAudio@3x.png ├── IconBT.imageset │ ├── Contents.json │ ├── IconBT@1x.png │ ├── IconBT@2x.png │ └── IconBT@3x.png ├── IconBitcoin.imageset │ ├── Contents.json │ └── IconBitcoin.png ├── IconBluetooth.imageset │ ├── Contents.json │ ├── IconBluetooth@1x.png │ ├── IconBluetooth@2x.png │ └── IconBluetooth@3x.png ├── IconBoot.imageset │ ├── Contents.json │ ├── IconBoot@1x.png │ ├── IconBoot@2x.png │ └── IconBoot@3x.png ├── IconBuyMeABeer.imageset │ ├── Contents.json │ ├── IconBuyMeABeer@1x.png │ ├── IconBuyMeABeer@2x.png │ └── IconBuyMeABeer@3x.png ├── IconCalculator.imageset │ ├── Contents.json │ ├── IconCalculator@1x.png │ ├── IconCalculator@2x.png │ └── IconCalculator@3x.png ├── IconClearAll.imageset │ ├── Contents.json │ ├── IconClearAll@1x.png │ ├── IconClearAll@2x.png │ └── IconClearAll@3x.png ├── IconClock.imageset │ ├── Contents.json │ └── IconClock.png ├── IconClover.imageset │ ├── Contents.json │ ├── IconClover.png │ ├── IconClover@1x.png │ ├── IconClover@2x.png │ └── IconClover@3x.png ├── IconCompile.imageset │ ├── Contents.json │ ├── IconCompile@1x.png │ ├── IconCompile@2x.png │ └── IconCompile@3x.png ├── IconDelete.imageset │ ├── Contents.json │ ├── IconDelete@1x.png │ ├── IconDelete@2x.png │ └── IconDelete@3x.png ├── IconDisk.imageset │ ├── Contents.json │ ├── IconDIsk@1x.png │ ├── IconDIsk@2x.png │ └── IconDIsk@3x.png ├── IconDisplay.imageset │ ├── Contents.json │ ├── IconDisplay@1x.png │ ├── IconDisplay@2x.png │ └── IconDisplay@3x.png ├── IconDonate.imageset │ ├── Contents.json │ ├── IconDonate@1x.png │ ├── IconDonate@2x.png │ └── IconDonate@3x.png ├── IconDownload.imageset │ ├── Contents.json │ ├── IconDownload@1x.png │ ├── IconDownload@2x.png │ └── IconDownload@3x.png ├── IconEthereum.imageset │ ├── Contents.json │ └── IconEthereum.png ├── IconExport.imageset │ ├── Contents.json │ ├── IconExport@1x.png │ ├── IconExport@2x.png │ └── IconExport@3x.png ├── IconFind.imageset │ ├── Contents.json │ ├── IconFind.png │ ├── IconFind@1x.png │ ├── IconFind@2x.png │ └── IconFind@3x.png ├── IconFix.imageset │ ├── Contents.json │ ├── IconFix@1x.png │ ├── IconFix@2x.png │ └── IconFix@3x.png ├── IconFolder.imageset │ ├── Contents.json │ ├── IconFolder.png │ ├── IconFolder@1x.png │ ├── IconFolder@2x.png │ └── IconFolder@3x.png ├── IconGPU.imageset │ ├── Contents.json │ ├── IconGPU@1x.png │ ├── IconGPU@2x.png │ └── IconGPU@3x.png ├── IconGatekeeper.imageset │ ├── Contents.json │ ├── IconGatekeeper@1x.png │ ├── IconGatekeeper@2x.png │ └── IconGatekeeper@3x.png ├── IconGeneral.imageset │ ├── Contents.json │ └── IconGeneral.png ├── IconHeadless.imageset │ ├── Contents.json │ ├── IconHeadless@1x.png │ ├── IconHeadless@2x.png │ └── IconHeadless@3x.png ├── IconImport.imageset │ ├── Contents.json │ ├── IconImport@1x.png │ ├── IconImport@2x.png │ └── IconImport@3x.png ├── IconInfo.imageset │ ├── Contents.json │ ├── IconInfo@1x.png │ ├── IconInfo@2x.png │ └── IconInfo@3x.png ├── IconInject.imageset │ ├── Contents.json │ ├── IconInject@1x.png │ ├── IconInject@2x.png │ └── IconInject@3x.png ├── IconInstalled.imageset │ ├── Contents.json │ ├── IconInstalled@1x.png │ ├── IconInstalled@2x.png │ └── IconInstalled@3x.png ├── IconIntel.imageset │ ├── Contents.json │ ├── IconIntel@1x.png │ ├── IconIntel@2x.png │ └── IconIntel@3x.png ├── IconLocked.imageset │ ├── Contents.json │ ├── IconLocked@1x.png │ ├── IconLocked@2x.png │ └── IconLocked@3x.png ├── IconLog.imageset │ ├── Contents.json │ └── IconLog.png ├── IconLogs.imageset │ ├── Contents.json │ ├── IconLogs@1x.png │ ├── IconLogs@2x.png │ └── IconLogs@3x.png ├── IconMemory.imageset │ ├── Contents.json │ └── IconMemory.png ├── IconMount.imageset │ ├── Contents.json │ ├── IconMount@1x.png │ ├── IconMount@2x.png │ └── IconMount@3x.png ├── IconNIC.imageset │ ├── Contents.json │ ├── IconNIC@1x.png │ ├── IconNIC@2x.png │ └── IconNIC@3x.png ├── IconNVRAM.imageset │ ├── Contents.json │ ├── IconNVRAM@1x.png │ ├── IconNVRAM@2x.png │ └── IconNVRAM@3x.png ├── IconNetwork.imageset │ ├── Contents.json │ ├── IconNetwork.png │ ├── IconNetwork@1x.png │ ├── IconNetwork@2x.png │ └── IconNetwork@3x.png ├── IconOpen.imageset │ ├── Contents.json │ ├── IconFolder@1x.png │ ├── IconFolder@2x.png │ ├── IconFolder@3x.png │ └── IconOpen.png ├── IconOpenCore.imageset │ ├── Contents.json │ ├── IconOpenCore.png │ ├── IconOpenCore@1x.png │ ├── IconOpenCore@2x.png │ └── IconOpenCore@3x.png ├── IconPCI.imageset │ ├── Contents.json │ ├── IconPCI@1x.png │ ├── IconPCI@2x.png │ └── IconPCI@3x.png ├── IconPatch.imageset │ ├── Contents.json │ ├── IconPatch@1x.png │ ├── IconPatch@2x.png │ └── IconPatch@3x.png ├── IconPayPal.imageset │ ├── Contents.json │ └── IconPayPal.png ├── IconPower.imageset │ ├── Contents.json │ ├── IconPower@1x.png │ ├── IconPower@2x.png │ └── IconPower@3x.png ├── IconPrint.imageset │ ├── Contents.json │ └── IconPrint.png ├── IconRaptoreum.imageset │ ├── Contents.json │ └── IconRaptoreum.png ├── IconRavencoin.imageset │ ├── Contents.json │ └── IconRavencoin.png ├── IconReload.imageset │ ├── Contents.json │ ├── IconReload@1x.png │ ├── IconReload@2x.png │ └── IconReload@3x.png ├── IconRename.imageset │ ├── Contents.json │ ├── IconRename@1x.png │ ├── IconRename@2x.png │ └── IconRename@3x.png ├── IconRepairKext.imageset │ ├── Contents.json │ ├── IconRepairKext@1x.png │ ├── IconRepairKext@2x.png │ └── IconRepairKext@3x.png ├── IconReport.imageset │ ├── Contents.json │ └── IconReport.png ├── IconSATA.imageset │ ├── Contents.json │ ├── IconSATA@1x.png │ ├── IconSATA@2x.png │ └── IconSATA@3x.png ├── IconSSD.imageset │ ├── Contents.json │ ├── IconSSD@1x.png │ ├── IconSSD@2x.png │ └── IconSSD@3x.png ├── IconSerial.imageset │ ├── Contents.json │ ├── IconSerial@1x.png │ ├── IconSerial@2x.png │ └── IconSerial@3x.png ├── IconSerialApple.imageset │ ├── Contents.json │ ├── IconSerialApple@1x.png │ ├── IconSerialApple@2x.png │ └── IconSerialApple@3x.png ├── IconSound.imageset │ ├── Contents.json │ ├── IconSound@1x.png │ ├── IconSound@2x.png │ └── IconSound@3x.png ├── IconSponsor.imageset │ ├── Contents.json │ ├── IconSponsor@1x.png │ ├── IconSponsor@2x.png │ └── IconSponsor@3x.png ├── IconStar.imageset │ ├── Contents.json │ ├── IconStar@1x.png │ ├── IconStar@2x.png │ └── IconStar@3x.png ├── IconSystem.imageset │ ├── Contents.json │ ├── IconSystem@1x.png │ ├── IconSystem@2x.png │ └── IconSystem@3x.png ├── IconTable.imageset │ ├── Contents.json │ ├── IconTable@1x.png │ ├── IconTable@2x.png │ └── IconTable@3x.png ├── IconTools.imageset │ ├── Contents.json │ ├── IconTools@1x.png │ ├── IconTools@2x.png │ └── IconTools@3x.png ├── IconUSB.imageset │ ├── Contents.json │ ├── IconUSB@1x.png │ ├── IconUSB@2x.png │ └── IconUSB@3x.png ├── IconUnknown.imageset │ ├── Contents.json │ ├── IconUnknown.png │ ├── IconUnknown@1x.png │ ├── IconUnknown@2x.png │ └── IconUnknown@3x.png ├── IconUnlocked.imageset │ ├── Contents.json │ ├── IconUnlocked@1x.png │ ├── IconUnlocked@2x.png │ └── IconUnlocked@3x.png ├── IconUnmount.imageset │ ├── Contents.json │ ├── IconUnmount@1x.png │ ├── IconUnmount@2x.png │ └── IconUnmount@3x.png ├── IconUpdate.imageset │ ├── Contents.json │ ├── IconUpdate@1x.png │ ├── IconUpdate@2x.png │ └── IconUpdate@3x.png ├── IconView.imageset │ ├── Contents.json │ ├── IconView@1x.png │ ├── IconView@2x.png │ └── IconView@3x.png ├── IconWeb.imageset │ ├── Contents.json │ ├── IconWeb@1x.png │ ├── IconWeb@2x.png │ └── IconWeb@3x.png ├── IconWiFi.imageset │ ├── Contents.json │ └── IconWiFi.png └── IconWinReg.imageset │ ├── Contents.json │ ├── IconWinReg@1x.png │ ├── IconWinReg@2x.png │ └── IconWinReg@3x.png ├── README.md ├── Resources ├── ACPI │ ├── SSDT-EC.dsl │ ├── SSDT-STAS.dsl │ ├── SSDT-UIAC-ALL.dsl │ ├── SSDT-USBX.dsl │ └── SSDT-XOSI.dsl ├── Audio │ ├── Codecs.plist │ ├── Controllers.plist │ ├── Kexts.plist │ └── Vendors.plist ├── Clover │ ├── config_patches.plist │ └── config_renames.plist ├── DisplayMergeNub │ ├── DisplayMergeNub │ └── _CodeSignature │ │ └── CodeResources ├── EveryMac │ ├── EveryMacScraper.py │ └── Systems.plist ├── Framebuffer │ ├── macOS 10.13.6 │ │ ├── Broadwell.bin │ │ ├── Cannon Lake.bin │ │ ├── Coffee Lake.bin │ │ ├── Haswell.bin │ │ ├── Ice Lake (HP).bin │ │ ├── Ice Lake (LP).bin │ │ ├── Ivy Bridge.bin │ │ ├── Kaby Lake.bin │ │ ├── PlatformIDs.plist │ │ ├── Sandy Bridge.bin │ │ └── Skylake.bin │ └── macOS 10.14 │ │ ├── Broadwell.bin │ │ ├── Coffee Lake.bin │ │ ├── Haswell.bin │ │ ├── Ice Lake (LP).bin │ │ ├── Ivy Bridge.bin │ │ ├── Kaby Lake.bin │ │ ├── PlatformIDs.plist │ │ └── Skylake.bin ├── Help │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── css │ │ ├── icon.png │ │ └── style.css │ │ ├── en.lproj │ │ ├── Audio.html │ │ ├── Display.html │ │ ├── Hackintool.helpindex │ │ ├── InfoPlist.strings │ │ ├── USB.html │ │ └── index.html │ │ ├── images │ │ └── icon.png │ │ ├── ko.lproj │ │ ├── Audio.html │ │ ├── Display.html │ │ ├── Hackintool.helpindex │ │ ├── InfoPlist.strings │ │ ├── USB.html │ │ └── index.html │ │ ├── tr.lproj │ │ ├── Audio.html │ │ ├── Display.html │ │ ├── Hackintool.helpindex │ │ ├── InfoPlist.strings │ │ ├── USB.html │ │ └── index.html │ │ └── zh-Hans.lproj │ │ ├── Audio.html │ │ ├── Display.html │ │ ├── Hackintool.helpindex │ │ ├── InfoPlist.strings │ │ ├── USB.html │ │ └── index.html ├── Intel │ ├── AudioCodecs.plist │ ├── DeviceIDs.plist │ ├── FBDrivers.plist │ ├── GPUs.plist │ ├── Models.plist │ ├── SpoofAudio.plist │ └── SystemConfigs │ │ ├── ASRock │ │ ├── B360M-ITX_ac [CFL].plist │ │ ├── DeskMini 310 [CFL].plist │ │ ├── Fatal1ty Z370 Gaming-ITX_ac [CFL].plist │ │ ├── H370M-ITX_ac [CFL].plist │ │ ├── Z370 Taichi [CFL].plist │ │ ├── Z390M-ITX_ac [CFL].plist │ │ └── Z490M-ITX-AC[CFL].plist │ │ ├── Asus │ │ └── Prime H370M-Plus [CFL], Prime Z390-A [CFL], ROG Strix B360-I [CFL], TUF Z390M-Pro Gaming [CFL], Prime H370-Plus [CFL].plist │ │ ├── Dell │ │ ├── Inspiron 5491 CPU I7 10510U [CML].plist │ │ └── Inspiron 5584 CPU I5 8265U [CFL].plist │ │ ├── Generic │ │ ├── Intel UHD Graphics 620 [CFL].plist │ │ └── Intel UHD Graphics 630 [CFL].plist │ │ ├── Gigabyte │ │ ├── B360N WiFi [CFL].plist │ │ ├── Designare Z390 [CFL v1].plist │ │ ├── Designare Z390 [CFL v2].plist │ │ ├── Designare Z390 [i9-9900K_ZISQO].plist │ │ ├── H310M [CFL].plist │ │ ├── H370 AORUS Gaming 3 [CFL].plist │ │ ├── H370M-D3H [CFL], H370M-D3H GSM [CFL].plist │ │ ├── H370M-DS3H [CFL].plist │ │ ├── H370N WiFi [CFL].plist │ │ ├── Z370N WiFi [CFL].plist │ │ ├── Z390 AORUS Elite [CFL].plist │ │ ├── Z390 AORUS Master [CFL].plist │ │ ├── Z390M Gaming [CFL].plist │ │ └── Z490M Gaming X [CFL] Bios DVMT 128.plist │ │ ├── Hewlett Packard │ │ └── Pavilion 590-p0066 [CFL].plist │ │ └── MSI │ │ ├── Z370I Gaming Pro Carbon AC [CFL].plist │ │ ├── Z390M Gaming Edge AC [CFL].plist │ │ └── Z390M Gaming Plus [CFL].plist ├── Kexts │ ├── AirPortAtheros40.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AirPortAtheros40 │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ ├── AppleAHCIPortHotplug.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleAHCIPort │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ ├── AppleIntelInfo.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleIntelInfo │ ├── IO80211Family.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── IO80211Family │ │ │ ├── PlugIns │ │ │ ├── AirPortAtheros40.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AirPortAtheros40 │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── version.plist │ │ │ ├── AirPortBrcm4331.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AirPortBrcm4331 │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── version.plist │ │ │ ├── AirPortBrcm4360.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AirPortBrcm4360 │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── version.plist │ │ │ ├── AirPortBrcmNIC.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AirPortBrcmNIC │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── version.plist │ │ │ └── IO80211NetBooter.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── IO80211NetBooter │ │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ │ └── version.plist │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ └── kexts.plist ├── OpenCore │ └── config.plist ├── PCI │ └── pci.ids ├── USB │ ├── USBInjectAll-Info.plist │ ├── config_patches.plist │ └── usb.ids ├── Utilities │ ├── iasl │ └── refs.txt └── Windows │ ├── WinUTCOff.reg │ └── WinUTCOn.reg └── images ├── Hackintool01.png ├── Hackintool02.png ├── Hackintool03.png ├── Hackintool04.png ├── Hackintool05.png ├── Hackintool06.png ├── Hackintool07.png ├── Hackintool08.png ├── Hackintool09.png ├── Hackintool10.png ├── Hackintool11.png ├── Hackintool12.png ├── Hackintool13.png ├── Hackintool14.png └── Hackintool15.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.strings diff=utf16 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [benbaker76] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: [ 13 | "https://paypal.me/benbaker1976", 14 | ] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .Trashes 3 | *.swp 4 | *.lock 5 | *~.nib 6 | DerivedData/ 7 | build/ 8 | *.pbxuser 9 | *.mode1v3 10 | *.mode2v3 11 | *.perspectivev3 12 | !default.pbxuser 13 | !default.mode1v3 14 | !default.mode2v3 15 | !default.perspectivev3 16 | *.xccheckout 17 | xcuserdata/ 18 | *.moved-aside 19 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations": [ 3 | { 4 | "name": "Mac", 5 | "includePath": [ 6 | "${workspaceFolder}/**" 7 | ], 8 | "defines": [], 9 | "macFrameworkPath": [ 10 | "/System/Library/Frameworks", 11 | "/Library/Frameworks" 12 | ], 13 | "cStandard": "c17", 14 | "cppStandard": "c++98", 15 | "intelliSenseMode": "macos-clang-x64" 16 | } 17 | ], 18 | "version": 4 19 | } -------------------------------------------------------------------------------- /DisplayMergeNub/DisplayMergeNub.h: -------------------------------------------------------------------------------- 1 | #ifndef _IOKIT_DisplayMergeNub_H 2 | #define _IOKIT_DisplayMergeNub_H 3 | 4 | #include <IOKit/IOService.h> 5 | 6 | class DisplayMergeNub : public IOService 7 | { 8 | OSDeclareDefaultStructors(DisplayMergeNub) 9 | 10 | public: 11 | IOService * probe(IOService *provider, SInt32 *score) override; 12 | bool start(IOService *provider) override; 13 | virtual bool MergeDictionaryIntoProvider(IOService * provider, OSDictionary * mergeDict); 14 | virtual bool MergeDictionaryIntoDictionary(OSDictionary * sourceDictionary, OSDictionary * targetDictionary); 15 | 16 | }; 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Autoupdate: -------------------------------------------------------------------------------- 1 | Versions/Current/Autoupdate -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Updater.app: -------------------------------------------------------------------------------- 1 | Versions/Current/Updater.app -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Autoupdate -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUGentleUserDriverReminders.h 3 | // Sparkle 4 | // 5 | // Copyright © 2022 Sparkle Project. All rights reserved. 6 | // 7 | 8 | #ifndef SPUGentleUserDriverReminders_h 9 | #define SPUGentleUserDriverReminders_h 10 | 11 | /** 12 | A private protocol for user drivers implementing gentle scheduled reminders 13 | */ 14 | @protocol SPUGentleUserDriverReminders 15 | 16 | - (void)logGentleScheduledUpdateReminderWarningIfNeeded; 17 | 18 | - (void)resetTimeSinceOpportuneUpdateNotice; 19 | 20 | @end 21 | 22 | #endif /* SPUGentleUserDriverReminders_h */ 23 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUInstallationType.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 7/24/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SPUInstallationType_h 10 | #define SPUInstallationType_h 11 | 12 | #define SPUInstallationTypeApplication @"application" // the default installation type for ordinary application updates 13 | #define SPUInstallationTypeGuidedPackage @"package" // the preferred installation type for package installations 14 | #define SPUInstallationTypeInteractivePackage @"interactive-package" // the deprecated installation type; use guided package instead 15 | 16 | #define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage, SPUInstallationTypeInteractivePackage]) 17 | #define SPUValidInstallationType(x) ((x != nil) && [SPUInstallationTypesArray containsObject:(NSString * _Nonnull)x]) 18 | 19 | #endif /* SPUInstallationType_h */ 20 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUUserAgent+Private.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 11/12/21. 6 | // Copyright © 2021 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | #if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) 12 | // Ignore incorrect warning 13 | #pragma clang diagnostic push 14 | #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" 15 | #import "SUExport.h" 16 | #pragma clang diagnostic pop 17 | #else 18 | #import <Sparkle/SUExport.h> 19 | #endif 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | @class SUHost; 24 | 25 | SU_EXPORT NSString *SPUMakeUserAgentWithHost(SUHost *responsibleHost, NSString * _Nullable displayNameSuffix); 26 | 27 | SU_EXPORT NSString *SPUMakeUserAgentWithBundle(NSBundle *responsibleBundle, NSString * _Nullable displayNameSuffix); 28 | 29 | NS_ASSUME_NONNULL_END 30 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css: -------------------------------------------------------------------------------- 1 | @media (prefers-color-scheme: dark) { 2 | html { 3 | color-scheme: dark; 4 | color: white; 5 | background: transparent; 6 | } 7 | :link { 8 | color: #419CFF; 9 | } 10 | :link:active { 11 | color: #FF1919; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "محدث البرنامج"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "معلومات عن الإصدار:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "تذكيري لاحقًا"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "تخطي هذا الإصدار"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "تثبيت التحديث"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "تنزيل التحديثات وتثبيتها تلقائيًا في المستقبل"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Actualització del programari"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Notes d'aquesta versió:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Recorda-m'ho més tard"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Omet aquesta versió"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instal·la l'actualització"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Descarrega i instal·la les actualitzacions automàticament en el futur"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Aktualizace aplikace"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Poznámky k vydání:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Připomenout později"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Přeskočit tuto verzi"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instalovat aktualizaci"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "V budoucnu stahovat a instalovat aktualizace automaticky"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Software Update"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Om denne udgivelse:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Påmind mig senere"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Spring over"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installer"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Hent og installer opdateringer automatisk i fremtiden"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Softwareupdate"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Versionshinweise:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Später erinnern"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Diese Version überspringen"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installieren"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Updates in Zukunft automatisch laden und installieren"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Ενημέρωση προγράμματος"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Σημειώσεις Έκδοσης:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Υπενθύμιση Αργότερα"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Παράλειψη Έκδοσης"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Εγκατάσταση Ενημέρωσης"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Αυτόματη λήψη και εγκατάσταση ενημερώσεων στο μέλλον"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 3 | "5.title" = "Software Update"; 4 | 5 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 6 | "170.title" = "Release Notes:"; 7 | 8 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 9 | "171.title" = "Remind Me Later"; 10 | 11 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 12 | "172.title" = "Skip This Version"; 13 | 14 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 15 | "173.title" = "Install Update"; 16 | 17 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 18 | "175.title" = "Automatically download and install updates in the future"; 19 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Actualización de software"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Notas de la versión:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Recordármelo"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "No instalar esta versión"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instalar actualización"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Descargar e instalar actualizaciones automáticamente"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Ohjelmiston pävitys"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Tietoa päivityksestä:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Muistuta myöhemmin"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Ohita tämä versio"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Asenna päivitys"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Hae ja asenna päivitykset jatkossa automaattisesti"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Mise à jour logiciel"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Notes de version :"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Pas maintenant"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Ignorer cette version"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installer"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Télécharger et installer automatiquement les mises à jour"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "עדכון תכנה"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "פרטי גרסה:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "הזכר לי מאוחר יותר"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "דלג על גרסה זו"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "התקן עדכון"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "הורד והתקן עדכונים אוטומטית גם בעתיד"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Aktualiziranje softvera"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Napomene uz izdanje:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Podsjeti me kasnije"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Zanemari ovu verziju"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instaliraj nadogradnju"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Ubuduće preuzmi i instaliraj nadogradnje automatski"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Szoftverfrissítés"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Változások az előző verzióhoz képest:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Emlékeztessen később"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Verzió kihagyása"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Telepítés"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "A jövőben automatikusan töltse le és telepítse a frissítéseket"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Hugbúnaðaruppfærsla"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Útgáfupunktar:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Áminntu mig síðar"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Sleppa þessari útgáfu"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Innsetja"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Sækja og innsetja uppfærslur sjálfkrafa framvegis"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Aggiornamento Software"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Note di rilascio:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Ricordamelo più tardi"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Ignora questa versione"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installa"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "In futuro scarica e installa automaticamente gli aggiornamenti"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "ソフトウェア・アップデート"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "リリースノート:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "後で通知"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "このバージョンはスキップ"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "アップデートをインストール"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "今後はアップデートのダウンロードとインストールを自動で行う"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Software Update"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "배포 정보:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "나중에"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "이 버전 건너뛰기"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "업데이트 설치"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "나중에 업데이트 자동으로 다운로드 및 설치"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Programoppdatering"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Om oppdateringen:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Utsett"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Hopp over"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installer"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Last ned og installer automatisk i fremtiden"; 18 | 19 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Software-update"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Versiegegevens:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Herinner mij later"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Sla deze versie over"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installeer update"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Download en installeer updates voortaan automatisch"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Uaktualnienie oprogramowania"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Szczegóły wydania:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Przypomnij później"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Pomiń tę wersję"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Zainstaluj teraz"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Automatycznie pobierz i zainstaluj przyszłe uaktualnienia"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Atualização de Software"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Notas do Lançamento:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Mais Tarde"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Ignorar Esta Versão"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instalar Atualização"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Baixar e instalar atualizações futuras automaticamente"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Actualização de Software"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Notas de lançamento:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Lembrar mais tarde"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Saltar esta versão"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instalar actualização"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "No futuro, transferir e instalar actualizações automaticamente"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Actualizarea aplicației"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Note de ediție:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Amintește-mi mai târziu"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Sari peste…"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Instalează actualizarea"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "În viitor descarcă și instalează în automat actualizările"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Обновление программного обеспечения"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Заметки о выпуске:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Напоминать позже"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Пропустить эту версию"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Установить обновление"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Автоматически загружать и устанавливать обновления в будущем"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Aktualizácia softvéru"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Poznámky k vydaniu:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Pripomenúť neskôr"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Vynechať túto verziu"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Nainštalovať"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "V budúcnosti aktualizácie preberať a inštalovať automaticky"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Posodabljanje programske opreme"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Opombe ob izdaji:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Spomni me kasneje"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Preskoči to verzijo"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Namesti posodobitev"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "V prihodnje samodejno nameščaj posodobitve"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Programuppdatering"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Versionsinformation:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Påminn mig senare"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Hoppa över denna version"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Installera uppdatering"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Hämta och installera nya uppdateringar automatiskt i framtiden."; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "อัพเดทซอฟต์แวร์"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Release Notes:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "เตือนในภายหลัง"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "ข้ามเวอร์ชั่นนี้"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "ติดตั้งอัพเดท"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "ดาวน์โหลดและติดตั้งอัพเดทโดยอัตโนมัติในอนาคต"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Software-Aktualisierung"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Sürüm Hakkında:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Sonra Hatırlat"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Bu Sürümü Geç"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Kur"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Bundan sonra güncellemeleri kendiliğinden indir ve kur"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "Оновлення програмного забезпечення"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "Примітки про нову версію:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "Нагадати пізніше"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "Пропустити цю версію"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "Встановити оновлення"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "Автоматично завантажувати та встановлювати оновлення у майбутньому"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "软件更新"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "更新信息:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "稍后提示我"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "跳过这个版本"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "安装更新"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "以后自动下载并安装更新"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "軟體更新"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "更新事項:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "稍後提醒我"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "跳過此版本"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "安裝更新"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "以後自動下載並安裝更新"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ 2 | "5.title" = "軟體更新"; 3 | 4 | /* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ 5 | "170.title" = "更新事項:"; 6 | 7 | /* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ 8 | "171.title" = "暫緩提醒"; 9 | 10 | /* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ 11 | "172.title" = "跳過此版本"; 12 | 13 | /* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ 14 | "173.title" = "安裝更新項目"; 15 | 16 | /* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ 17 | "175.title" = "自動下載並安裝未來的更新項目"; 18 | -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Sparkle -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Frameworks/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/XPCServices: -------------------------------------------------------------------------------- 1 | Versions/Current/XPCServices -------------------------------------------------------------------------------- /Hackintool.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <Workspace 3 | version = "1.0"> 4 | <FileRef 5 | location = "self:"> 6 | </FileRef> 7 | </Workspace> 8 | -------------------------------------------------------------------------------- /Hackintool.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>IDEDidComputeMac32BitWarning</key> 6 | <true/> 7 | </dict> 8 | </plist> 9 | -------------------------------------------------------------------------------- /Hackintool.xcodeproj/project.xcworkspace/xcuserdata/headsoft.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <array/> 5 | </plist> 6 | -------------------------------------------------------------------------------- /Hackintool.xcodeproj/project.xcworkspace/xcuserdata/headsoft.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool.xcodeproj/project.xcworkspace/xcuserdata/headsoft.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Hackintool.xcodeproj/project.xcworkspace/xcuserdata/jonas.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool.xcodeproj/project.xcworkspace/xcuserdata/jonas.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Hackintool/Authorization.h: -------------------------------------------------------------------------------- 1 | // 2 | // Authorization.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 1/29/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #ifndef Authorization_h 10 | #define Authorization_h 11 | 12 | typedef void (*AuthorizationGrantedCallback)(AuthorizationRef __nullable authorization, OSErr status, void * __nullable context); 13 | 14 | void initAuthorization(AuthorizationGrantedCallback _Nonnull callback, void * __nullable context); 15 | OSErr getAuthorization(AuthorizationRef _Nonnull*_Nonnull authorization); 16 | OSErr requestAdministratorRights(); 17 | void callAuthorizationGrantedCallback(OSErr status); 18 | OSErr freeAuthorization(); 19 | 20 | #endif /* Authorization_hpp */ 21 | -------------------------------------------------------------------------------- /Hackintool/BarTableRowView.h: -------------------------------------------------------------------------------- 1 | // 2 | // BarTableRowView.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 3/23/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Cocoa/Cocoa.h> 10 | 11 | @interface BarTableRowView : NSTableRowView 12 | { 13 | } 14 | 15 | -(id) initWithPercent:(double)percent column:(NSInteger)column color:(NSColor *)color inset:(NSSize)inset radius:(NSInteger)radius stroke:(Boolean)stroke; 16 | 17 | @property double percent; 18 | @property NSInteger column; 19 | @property (nonatomic, retain) NSColor *color; 20 | @property NSSize inset; 21 | @property NSInteger radius; 22 | @property Boolean stroke; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Hackintool/Config.h: -------------------------------------------------------------------------------- 1 | // 2 | // Config.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 1/29/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #ifndef Config_h 10 | #define Config_h 11 | 12 | #import <Cocoa/Cocoa.h> 13 | #import "AppDelegate.h" 14 | #include <stdio.h> 15 | 16 | @interface Config : NSObject 17 | { 18 | } 19 | 20 | + (bool)mountBootEFI:(AppDelegate *)appDelegate efiVolumeURL:(NSURL **)efiVolumeURL; 21 | + (bool)openConfig:(AppDelegate *)appDelegate configDictionary:(NSMutableDictionary **)configDictionary configPath:(NSString **)configPath; 22 | + (BOOL)doesMatchOS:(NSString *)matchOS; 23 | 24 | @end 25 | 26 | #endif /* Config_h */ 27 | -------------------------------------------------------------------------------- /Hackintool/Hackintool-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Hackintool' target in the 'Hackintool' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import <Cocoa/Cocoa.h> 7 | #endif 8 | -------------------------------------------------------------------------------- /Hackintool/NSColor+Pin.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSColor+Pin.h 3 | // PinConfigurator 4 | // 5 | // Created by Ben Baker on 2/7/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Cocoa/Cocoa.h> 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface NSColor (Pin) 14 | 15 | + (NSColor *)pinColor:(uint8_t)value; 16 | 17 | @end 18 | 19 | NS_ASSUME_NONNULL_END 20 | -------------------------------------------------------------------------------- /Hackintool/NSColor+Pin.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSColor+Pin.m 3 | // PinConfigurator 4 | // 5 | // Created by Ben Baker on 2/7/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import "NSColor+Pin.h" 10 | 11 | @implementation NSColor (Pin) 12 | 13 | + (NSColor *)pinColor:(uint8_t)value 14 | { 15 | NSArray *colorArray = @[[NSColor blackColor], [NSColor blackColor], [NSColor grayColor], [NSColor blueColor], [NSColor greenColor], [NSColor redColor], [NSColor orangeColor], [NSColor yellowColor], [NSColor purpleColor], [NSColor magentaColor], [NSColor blackColor], [NSColor blackColor], [NSColor blackColor], [NSColor blackColor], [NSColor whiteColor], [NSColor blackColor]]; 16 | 17 | return colorArray[value & 0xF]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Hackintool/NSPinCellView.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSPinCell.h 3 | // PinConfigurator 4 | // 5 | // Created by Ben Baker on 8/8/18. 6 | // Copyright © 2018 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Cocoa/Cocoa.h> 10 | #import "AudioNode.h" 11 | 12 | @interface NSPinCellView : NSTableCellView 13 | { 14 | } 15 | 16 | @property (retain) AudioNode *item; 17 | @property BOOL isSelected; 18 | 19 | - (void)setItem:(AudioNode *)device isSelected:(BOOL)isSelected; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Hackintool/NSString+Pin.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Pin.h 3 | // PinConfigurator 4 | // 5 | // Created by Ben Baker on 2/7/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface NSString (Pin) 14 | 15 | + (NSString *)pinDirection:(uint8_t)value; 16 | + (NSString *)pinColor:(uint8_t)value; 17 | + (NSString *)pinMisc:(uint8_t)value; 18 | + (NSString *)pinDefaultDevice:(uint8_t)value; 19 | + (NSString *)pinConnector:(uint8_t)value; 20 | + (NSString *)pinPort:(uint8_t)value; 21 | + (NSString *)pinGrossLocation:(uint8_t)value; 22 | + (NSString *)pinLocation:(uint8_t)grossLocation geometricLocation:(uint8_t)geometricLocation; 23 | + (NSString *)pinEAPD:(uint8_t)value;; 24 | + (NSString *)pinConfigDescription:(uint8_t *)value; 25 | + (NSString *)pinDefaultDescription:(uint8_t *)value; 26 | 27 | @end 28 | 29 | NS_ASSUME_NONNULL_END 30 | -------------------------------------------------------------------------------- /Hackintool/NSTabViewImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSTabViewImage.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 8/8/18. 6 | // Copyright © 2018 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Cocoa/Cocoa.h> 10 | 11 | @interface NSTabViewImage : NSTabViewItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Hackintool/NVRAMXmlParser.h: -------------------------------------------------------------------------------- 1 | // 2 | // NVRAMXmlParser.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 1/25/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <AppKit/AppKit.h> 11 | 12 | enum ElementType 13 | { 14 | None, 15 | Array, 16 | Dictionary 17 | }; 18 | 19 | @interface NVRAMXmlParser : NSResponder <NSXMLParserDelegate> 20 | { 21 | NSMutableArray *_rootArray; 22 | NSMutableArray *_array; 23 | NSMutableDictionary *_dictionary; 24 | NSString *_key; 25 | NSString *_elementName; 26 | NSString *_lastElementName; 27 | } 28 | 29 | -(NSString *)getValue:(NSArray *)valueArray; 30 | 31 | +(instancetype)initWithString:(NSString *)string encoding:(NSStringEncoding)encoding; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /Hackintool/PCIMonitor.h: -------------------------------------------------------------------------------- 1 | // 2 | // PCIMonitor.h 3 | // Hackintool 4 | // 5 | // Created by Daniel Siemer on 5/5/12. 6 | // Modified by Ben Baker. 7 | // Copyright (c) 2012 The Growl Project, LLC. All rights reserved. 8 | // 9 | 10 | #import <Cocoa/Cocoa.h> 11 | 12 | @protocol PCIMonitorDelegate <NSObject> 13 | 14 | -(void)pciDeviceName:(NSString*)deviceName added:(BOOL)added; 15 | 16 | @end 17 | 18 | @interface PCIMonitor : NSObject 19 | 20 | @property (nonatomic, assign) id<PCIMonitorDelegate> delegate; 21 | @property (nonatomic, assign) BOOL notificationsArePrimed; 22 | 23 | @property (nonatomic, assign) IONotificationPortRef ioKitNotificationPort; 24 | @property (nonatomic, assign) CFRunLoopSourceRef notificationRunLoopSource; 25 | 26 | -(void)registerForPCINotifications; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Hackintool/Resolution.h: -------------------------------------------------------------------------------- 1 | // 2 | // Resolution.h 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 2/12/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #ifndef Resolution_h 10 | #define Resolution_h 11 | 12 | #import <Cocoa/Cocoa.h> 13 | 14 | typedef enum 15 | { 16 | kHiDPI1, 17 | kHiDPI2, 18 | kHiDPI3, 19 | kHiDPI4, 20 | kNonScaled, 21 | kAuto 22 | } HiDPIType; 23 | 24 | @interface Resolution : NSObject 25 | { 26 | } 27 | 28 | @property uint32_t width; 29 | @property uint32_t height; 30 | @property HiDPIType type; 31 | 32 | -(id) initWithWidth:(uint32_t)width height:(uint32_t)height type:(HiDPIType)type; 33 | 34 | @end 35 | 36 | #endif /* Resolution_h */ 37 | -------------------------------------------------------------------------------- /Hackintool/Resolution.m: -------------------------------------------------------------------------------- 1 | // 2 | // Resolution.m 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 2/12/19. 6 | // Copyright © 2019 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import "Resolution.h" 10 | 11 | @implementation Resolution 12 | 13 | -(id) initWithWidth:(uint32_t)width height:(uint32_t)height type:(HiDPIType)type 14 | { 15 | if (self = [super init]) 16 | { 17 | self.width = width; 18 | self.height = height; 19 | self.type = type; 20 | } 21 | 22 | return self; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Hackintool/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Hackintool 4 | // 5 | // Created by Ben Baker on 9/01/13. 6 | // Copyright (c) 2013 Ben Baker. All rights reserved. 7 | // 8 | 9 | #import <Cocoa/Cocoa.h> 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /Hackintool/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Hackintool/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Hackintool/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /MacSerial/UserPseudoRandom.h: -------------------------------------------------------------------------------- 1 | /** @file 2 | Copyright (c) 2020, vit9696. All rights reserved. 3 | SPDX-License-Identifier: BSD-3-Clause 4 | **/ 5 | 6 | #ifndef OC_USER_PSEUDO_RANDOM_H 7 | #define OC_USER_PSEUDO_RANDOM_H 8 | 9 | #include <stdint.h> 10 | 11 | uint32_t pseudo_random(void); 12 | uint32_t pseudo_random_between(uint32_t from, uint32_t to); 13 | 14 | #endif // OC_USER_PSEUDO_RANDOM_H 15 | -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-128.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-16.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-256.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-32.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-512.png -------------------------------------------------------------------------------- /Media.xcassets/AppIcon.appiconset/Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/AppIcon.appiconset/Icon-64.png -------------------------------------------------------------------------------- /Media.xcassets/BannerEveryMac.imageset/BannerEveryMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/BannerEveryMac.imageset/BannerEveryMac.png -------------------------------------------------------------------------------- /Media.xcassets/BannerEveryMac.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "BannerEveryMac.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/BenBakerLogo.imageset/BenBakerLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/BenBakerLogo.imageset/BenBakerLogoSmall.png -------------------------------------------------------------------------------- /Media.xcassets/BenBakerLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "BenBakerLogoSmall.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Media.xcassets/HeadsoftLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "HeasoftLogoSmall.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/HeadsoftLogo.imageset/HeasoftLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/HeadsoftLogo.imageset/HeasoftLogoSmall.png -------------------------------------------------------------------------------- /Media.xcassets/IconAdd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconAdd@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconAdd@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconAdd@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconAdd.imageset/IconAdd@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAdd.imageset/IconAdd@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAdd.imageset/IconAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAdd.imageset/IconAdd@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAdd.imageset/IconAdd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAdd.imageset/IconAdd@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconApp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Icon-128.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Icon-256.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Icon-512.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconApp.imageset/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconApp.imageset/Icon-128.png -------------------------------------------------------------------------------- /Media.xcassets/IconApp.imageset/Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconApp.imageset/Icon-256.png -------------------------------------------------------------------------------- /Media.xcassets/IconApp.imageset/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconApp.imageset/Icon-512.png -------------------------------------------------------------------------------- /Media.xcassets/IconAtheros.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconAtheros@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconAtheros@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconAtheros@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconAtheros.imageset/IconAtheros@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAtheros.imageset/IconAtheros@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAtheros.imageset/IconAtheros@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAtheros.imageset/IconAtheros@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAtheros.imageset/IconAtheros@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAtheros.imageset/IconAtheros@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAudio.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconAudio@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconAudio@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconAudio@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconAudio.imageset/IconAudio@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAudio.imageset/IconAudio@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAudio.imageset/IconAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAudio.imageset/IconAudio@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconAudio.imageset/IconAudio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconAudio.imageset/IconAudio@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBT.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconBT@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconBT@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconBT@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconBT.imageset/IconBT@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBT.imageset/IconBT@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBT.imageset/IconBT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBT.imageset/IconBT@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBT.imageset/IconBT@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBT.imageset/IconBT@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBitcoin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconBitcoin.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Media.xcassets/IconBitcoin.imageset/IconBitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBitcoin.imageset/IconBitcoin.png -------------------------------------------------------------------------------- /Media.xcassets/IconBluetooth.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconBluetooth@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconBluetooth@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconBluetooth@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconBluetooth.imageset/IconBluetooth@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBluetooth.imageset/IconBluetooth@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBluetooth.imageset/IconBluetooth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBluetooth.imageset/IconBluetooth@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBluetooth.imageset/IconBluetooth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBluetooth.imageset/IconBluetooth@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBoot.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconBoot@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconBoot@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconBoot@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconBoot.imageset/IconBoot@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBoot.imageset/IconBoot@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBoot.imageset/IconBoot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBoot.imageset/IconBoot@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBoot.imageset/IconBoot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBoot.imageset/IconBoot@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBuyMeABeer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconBuyMeABeer@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconBuyMeABeer@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconBuyMeABeer@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconBuyMeABeer.imageset/IconBuyMeABeer@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCalculator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconCalculator@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconCalculator@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconCalculator@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconCalculator.imageset/IconCalculator@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCalculator.imageset/IconCalculator@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCalculator.imageset/IconCalculator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCalculator.imageset/IconCalculator@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCalculator.imageset/IconCalculator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCalculator.imageset/IconCalculator@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClearAll.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconClearAll@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconClearAll@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconClearAll@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconClearAll.imageset/IconClearAll@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClearAll.imageset/IconClearAll@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClearAll.imageset/IconClearAll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClearAll.imageset/IconClearAll@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClearAll.imageset/IconClearAll@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClearAll.imageset/IconClearAll@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClock.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconClock.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconClock.imageset/IconClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClock.imageset/IconClock.png -------------------------------------------------------------------------------- /Media.xcassets/IconClover.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconClover@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconClover@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconClover@3x.png", 16 | "scale" : "3x" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "filename" : "IconClover.png", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "2x" 26 | } 27 | ], 28 | "info" : { 29 | "version" : 1, 30 | "author" : "xcode" 31 | } 32 | } -------------------------------------------------------------------------------- /Media.xcassets/IconClover.imageset/IconClover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClover.imageset/IconClover.png -------------------------------------------------------------------------------- /Media.xcassets/IconClover.imageset/IconClover@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClover.imageset/IconClover@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClover.imageset/IconClover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClover.imageset/IconClover@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconClover.imageset/IconClover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconClover.imageset/IconClover@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCompile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconCompile@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconCompile@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconCompile@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconCompile.imageset/IconCompile@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCompile.imageset/IconCompile@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCompile.imageset/IconCompile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCompile.imageset/IconCompile@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconCompile.imageset/IconCompile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconCompile.imageset/IconCompile@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDelete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconDelete@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconDelete@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconDelete@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconDelete.imageset/IconDelete@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDelete.imageset/IconDelete@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDelete.imageset/IconDelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDelete.imageset/IconDelete@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDelete.imageset/IconDelete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDelete.imageset/IconDelete@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconDIsk@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconDIsk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconDIsk@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconDisk.imageset/IconDIsk@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisk.imageset/IconDIsk@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisk.imageset/IconDIsk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisk.imageset/IconDIsk@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisk.imageset/IconDIsk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisk.imageset/IconDIsk@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisplay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconDisplay@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconDisplay@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconDisplay@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconDisplay.imageset/IconDisplay@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisplay.imageset/IconDisplay@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisplay.imageset/IconDisplay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisplay.imageset/IconDisplay@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDisplay.imageset/IconDisplay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDisplay.imageset/IconDisplay@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDonate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconDonate@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconDonate@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconDonate@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconDonate.imageset/IconDonate@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDonate.imageset/IconDonate@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDonate.imageset/IconDonate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDonate.imageset/IconDonate@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDonate.imageset/IconDonate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDonate.imageset/IconDonate@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDownload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconDownload@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconDownload@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconDownload@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconDownload.imageset/IconDownload@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDownload.imageset/IconDownload@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDownload.imageset/IconDownload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDownload.imageset/IconDownload@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconDownload.imageset/IconDownload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconDownload.imageset/IconDownload@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconEthereum.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconEthereum.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Media.xcassets/IconEthereum.imageset/IconEthereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconEthereum.imageset/IconEthereum.png -------------------------------------------------------------------------------- /Media.xcassets/IconExport.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconExport@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconExport@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconExport@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconExport.imageset/IconExport@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconExport.imageset/IconExport@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconExport.imageset/IconExport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconExport.imageset/IconExport@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconExport.imageset/IconExport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconExport.imageset/IconExport@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFind.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconFind@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconFind@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconFind@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconFind.imageset/IconFind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFind.imageset/IconFind.png -------------------------------------------------------------------------------- /Media.xcassets/IconFind.imageset/IconFind@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFind.imageset/IconFind@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFind.imageset/IconFind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFind.imageset/IconFind@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFind.imageset/IconFind@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFind.imageset/IconFind@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFix.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconFix@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconFix@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconFix@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconFix.imageset/IconFix@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFix.imageset/IconFix@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFix.imageset/IconFix@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFix.imageset/IconFix@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFix.imageset/IconFix@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFix.imageset/IconFix@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFolder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconFolder@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconFolder@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconFolder@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconFolder.imageset/IconFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFolder.imageset/IconFolder.png -------------------------------------------------------------------------------- /Media.xcassets/IconFolder.imageset/IconFolder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFolder.imageset/IconFolder@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFolder.imageset/IconFolder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFolder.imageset/IconFolder@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconFolder.imageset/IconFolder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconFolder.imageset/IconFolder@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGPU.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconGPU@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconGPU@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconGPU@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconGPU.imageset/IconGPU@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGPU.imageset/IconGPU@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGPU.imageset/IconGPU@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGPU.imageset/IconGPU@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGPU.imageset/IconGPU@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGPU.imageset/IconGPU@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGatekeeper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconGatekeeper@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconGatekeeper@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconGatekeeper@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGatekeeper.imageset/IconGatekeeper@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconGeneral.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconGeneral.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconGeneral.imageset/IconGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconGeneral.imageset/IconGeneral.png -------------------------------------------------------------------------------- /Media.xcassets/IconHeadless.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconHeadless@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconHeadless@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconHeadless@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconHeadless.imageset/IconHeadless@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconHeadless.imageset/IconHeadless@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconHeadless.imageset/IconHeadless@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconHeadless.imageset/IconHeadless@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconHeadless.imageset/IconHeadless@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconHeadless.imageset/IconHeadless@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconImport.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconImport@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconImport@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconImport@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconImport.imageset/IconImport@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconImport.imageset/IconImport@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconImport.imageset/IconImport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconImport.imageset/IconImport@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconImport.imageset/IconImport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconImport.imageset/IconImport@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInfo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconInfo@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconInfo@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconInfo@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconInfo.imageset/IconInfo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInfo.imageset/IconInfo@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInfo.imageset/IconInfo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInfo.imageset/IconInfo@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInfo.imageset/IconInfo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInfo.imageset/IconInfo@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInject.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconInject@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconInject@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconInject@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconInject.imageset/IconInject@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInject.imageset/IconInject@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInject.imageset/IconInject@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInject.imageset/IconInject@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInject.imageset/IconInject@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInject.imageset/IconInject@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInstalled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconInstalled@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconInstalled@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconInstalled@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconInstalled.imageset/IconInstalled@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInstalled.imageset/IconInstalled@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInstalled.imageset/IconInstalled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInstalled.imageset/IconInstalled@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconInstalled.imageset/IconInstalled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconInstalled.imageset/IconInstalled@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconIntel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconIntel@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconIntel@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconIntel@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconIntel.imageset/IconIntel@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconIntel.imageset/IconIntel@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconIntel.imageset/IconIntel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconIntel.imageset/IconIntel@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconIntel.imageset/IconIntel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconIntel.imageset/IconIntel@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLocked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconLocked@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconLocked@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconLocked@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconLocked.imageset/IconLocked@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLocked.imageset/IconLocked@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLocked.imageset/IconLocked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLocked.imageset/IconLocked@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLocked.imageset/IconLocked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLocked.imageset/IconLocked@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLog.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconLog.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconLog.imageset/IconLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLog.imageset/IconLog.png -------------------------------------------------------------------------------- /Media.xcassets/IconLogs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconLogs@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconLogs@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconLogs@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconLogs.imageset/IconLogs@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLogs.imageset/IconLogs@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLogs.imageset/IconLogs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLogs.imageset/IconLogs@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconLogs.imageset/IconLogs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconLogs.imageset/IconLogs@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconMemory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconMemory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconMemory.imageset/IconMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconMemory.imageset/IconMemory.png -------------------------------------------------------------------------------- /Media.xcassets/IconMount.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconMount@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconMount@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconMount@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconMount.imageset/IconMount@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconMount.imageset/IconMount@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconMount.imageset/IconMount@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconMount.imageset/IconMount@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconMount.imageset/IconMount@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconMount.imageset/IconMount@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNIC.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconNIC@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconNIC@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconNIC@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconNIC.imageset/IconNIC@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNIC.imageset/IconNIC@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNIC.imageset/IconNIC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNIC.imageset/IconNIC@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNIC.imageset/IconNIC@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNIC.imageset/IconNIC@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNVRAM.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconNVRAM@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconNVRAM@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconNVRAM@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconNVRAM.imageset/IconNVRAM@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNVRAM.imageset/IconNVRAM@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNVRAM.imageset/IconNVRAM@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNVRAM.imageset/IconNVRAM@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNVRAM.imageset/IconNVRAM@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNVRAM.imageset/IconNVRAM@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNetwork.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconNetwork@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconNetwork@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconNetwork@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconNetwork.imageset/IconNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNetwork.imageset/IconNetwork.png -------------------------------------------------------------------------------- /Media.xcassets/IconNetwork.imageset/IconNetwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNetwork.imageset/IconNetwork@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNetwork.imageset/IconNetwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNetwork.imageset/IconNetwork@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconNetwork.imageset/IconNetwork@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconNetwork.imageset/IconNetwork@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconFolder@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconFolder@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconFolder@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconOpen.imageset/IconFolder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpen.imageset/IconFolder@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpen.imageset/IconFolder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpen.imageset/IconFolder@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpen.imageset/IconFolder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpen.imageset/IconFolder@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpen.imageset/IconOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpen.imageset/IconOpen.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpenCore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconOpenCore@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconOpenCore@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconOpenCore@3x.png", 16 | "scale" : "3x" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "filename" : "IconOpenCore.png", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "2x" 26 | } 27 | ], 28 | "info" : { 29 | "version" : 1, 30 | "author" : "xcode" 31 | } 32 | } -------------------------------------------------------------------------------- /Media.xcassets/IconOpenCore.imageset/IconOpenCore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpenCore.imageset/IconOpenCore.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpenCore.imageset/IconOpenCore@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpenCore.imageset/IconOpenCore@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpenCore.imageset/IconOpenCore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpenCore.imageset/IconOpenCore@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconOpenCore.imageset/IconOpenCore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconOpenCore.imageset/IconOpenCore@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPCI.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconPCI@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconPCI@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconPCI@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconPCI.imageset/IconPCI@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPCI.imageset/IconPCI@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPCI.imageset/IconPCI@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPCI.imageset/IconPCI@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPCI.imageset/IconPCI@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPCI.imageset/IconPCI@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPatch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconPatch@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconPatch@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconPatch@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconPatch.imageset/IconPatch@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPatch.imageset/IconPatch@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPatch.imageset/IconPatch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPatch.imageset/IconPatch@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPatch.imageset/IconPatch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPatch.imageset/IconPatch@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPayPal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconPayPal.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Media.xcassets/IconPayPal.imageset/IconPayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPayPal.imageset/IconPayPal.png -------------------------------------------------------------------------------- /Media.xcassets/IconPower.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconPower@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconPower@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconPower@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconPower.imageset/IconPower@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPower.imageset/IconPower@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPower.imageset/IconPower@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPower.imageset/IconPower@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPower.imageset/IconPower@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPower.imageset/IconPower@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconPrint.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconPrint.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconPrint.imageset/IconPrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconPrint.imageset/IconPrint.png -------------------------------------------------------------------------------- /Media.xcassets/IconRaptoreum.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconRaptoreum.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Media.xcassets/IconRaptoreum.imageset/IconRaptoreum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRaptoreum.imageset/IconRaptoreum.png -------------------------------------------------------------------------------- /Media.xcassets/IconRavencoin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconRavencoin.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Media.xcassets/IconRavencoin.imageset/IconRavencoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRavencoin.imageset/IconRavencoin.png -------------------------------------------------------------------------------- /Media.xcassets/IconReload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconReload@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconReload@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconReload@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconReload.imageset/IconReload@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconReload.imageset/IconReload@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconReload.imageset/IconReload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconReload.imageset/IconReload@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconReload.imageset/IconReload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconReload.imageset/IconReload@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRename.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconRename@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconRename@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconRename@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconRename.imageset/IconRename@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRename.imageset/IconRename@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRename.imageset/IconRename@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRename.imageset/IconRename@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRename.imageset/IconRename@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRename.imageset/IconRename@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRepairKext.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconRepairKext@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconRepairKext@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconRepairKext@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconRepairKext.imageset/IconRepairKext@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRepairKext.imageset/IconRepairKext@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRepairKext.imageset/IconRepairKext@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRepairKext.imageset/IconRepairKext@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconRepairKext.imageset/IconRepairKext@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconRepairKext.imageset/IconRepairKext@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconReport.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconReport.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconReport.imageset/IconReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconReport.imageset/IconReport.png -------------------------------------------------------------------------------- /Media.xcassets/IconSATA.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconSATA@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconSATA@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconSATA@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconSATA.imageset/IconSATA@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSATA.imageset/IconSATA@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSATA.imageset/IconSATA@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSATA.imageset/IconSATA@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSATA.imageset/IconSATA@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSATA.imageset/IconSATA@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSSD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconSSD@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconSSD@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconSSD@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconSSD.imageset/IconSSD@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSSD.imageset/IconSSD@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSSD.imageset/IconSSD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSSD.imageset/IconSSD@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSSD.imageset/IconSSD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSSD.imageset/IconSSD@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerial.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconSerial@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconSerial@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconSerial@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconSerial.imageset/IconSerial@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerial.imageset/IconSerial@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerial.imageset/IconSerial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerial.imageset/IconSerial@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerial.imageset/IconSerial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerial.imageset/IconSerial@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerialApple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconSerialApple@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconSerialApple@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconSerialApple@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconSerialApple.imageset/IconSerialApple@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerialApple.imageset/IconSerialApple@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerialApple.imageset/IconSerialApple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerialApple.imageset/IconSerialApple@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSerialApple.imageset/IconSerialApple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSerialApple.imageset/IconSerialApple@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSound.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconSound@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconSound@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconSound@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconSound.imageset/IconSound@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSound.imageset/IconSound@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSound.imageset/IconSound@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSound.imageset/IconSound@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSound.imageset/IconSound@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSound.imageset/IconSound@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSponsor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconSponsor@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconSponsor@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconSponsor@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconSponsor.imageset/IconSponsor@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSponsor.imageset/IconSponsor@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSponsor.imageset/IconSponsor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSponsor.imageset/IconSponsor@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSponsor.imageset/IconSponsor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSponsor.imageset/IconSponsor@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconStar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconStar@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconStar@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconStar@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconStar.imageset/IconStar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconStar.imageset/IconStar@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconStar.imageset/IconStar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconStar.imageset/IconStar@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconStar.imageset/IconStar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconStar.imageset/IconStar@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSystem.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconSystem@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconSystem@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconSystem@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconSystem.imageset/IconSystem@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSystem.imageset/IconSystem@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSystem.imageset/IconSystem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSystem.imageset/IconSystem@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconSystem.imageset/IconSystem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconSystem.imageset/IconSystem@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTable.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconTable@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconTable@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconTable@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconTable.imageset/IconTable@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTable.imageset/IconTable@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTable.imageset/IconTable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTable.imageset/IconTable@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTable.imageset/IconTable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTable.imageset/IconTable@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTools.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconTools@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconTools@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconTools@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconTools.imageset/IconTools@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTools.imageset/IconTools@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTools.imageset/IconTools@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTools.imageset/IconTools@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconTools.imageset/IconTools@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconTools.imageset/IconTools@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUSB.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconUSB@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconUSB@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconUSB@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconUSB.imageset/IconUSB@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUSB.imageset/IconUSB@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUSB.imageset/IconUSB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUSB.imageset/IconUSB@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUSB.imageset/IconUSB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUSB.imageset/IconUSB@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnknown.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconUnknown@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconUnknown@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconUnknown@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconUnknown.imageset/IconUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnknown.imageset/IconUnknown.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnknown.imageset/IconUnknown@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnknown.imageset/IconUnknown@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnknown.imageset/IconUnknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnknown.imageset/IconUnknown@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnknown.imageset/IconUnknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnknown.imageset/IconUnknown@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnlocked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconUnlocked@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconUnlocked@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconUnlocked@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconUnlocked.imageset/IconUnlocked@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnlocked.imageset/IconUnlocked@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnlocked.imageset/IconUnlocked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnlocked.imageset/IconUnlocked@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnlocked.imageset/IconUnlocked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnlocked.imageset/IconUnlocked@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnmount.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconUnmount@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconUnmount@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconUnmount@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconUnmount.imageset/IconUnmount@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnmount.imageset/IconUnmount@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnmount.imageset/IconUnmount@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnmount.imageset/IconUnmount@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUnmount.imageset/IconUnmount@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUnmount.imageset/IconUnmount@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUpdate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconUpdate@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "IconUpdate@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "IconUpdate@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Media.xcassets/IconUpdate.imageset/IconUpdate@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUpdate.imageset/IconUpdate@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUpdate.imageset/IconUpdate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUpdate.imageset/IconUpdate@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconUpdate.imageset/IconUpdate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconUpdate.imageset/IconUpdate@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconView.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconView@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconView@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconView@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconView.imageset/IconView@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconView.imageset/IconView@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconView.imageset/IconView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconView.imageset/IconView@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconView.imageset/IconView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconView.imageset/IconView@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWeb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconWeb@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconWeb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconWeb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconWeb.imageset/IconWeb@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWeb.imageset/IconWeb@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWeb.imageset/IconWeb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWeb.imageset/IconWeb@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWeb.imageset/IconWeb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWeb.imageset/IconWeb@3x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWiFi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IconWiFi.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Media.xcassets/IconWiFi.imageset/IconWiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWiFi.imageset/IconWiFi.png -------------------------------------------------------------------------------- /Media.xcassets/IconWinReg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "IconWinReg@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "IconWinReg@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "IconWinReg@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Media.xcassets/IconWinReg.imageset/IconWinReg@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWinReg.imageset/IconWinReg@1x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWinReg.imageset/IconWinReg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWinReg.imageset/IconWinReg@2x.png -------------------------------------------------------------------------------- /Media.xcassets/IconWinReg.imageset/IconWinReg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Media.xcassets/IconWinReg.imageset/IconWinReg@3x.png -------------------------------------------------------------------------------- /Resources/ACPI/SSDT-EC.dsl: -------------------------------------------------------------------------------- 1 | // Inject Fake EC device 2 | 3 | DefinitionBlock("", "SSDT", 2, "hack", "_EC", 0) 4 | { 5 | Device(_SB.EC) 6 | { 7 | Name(_HID, "EC000000") 8 | Method (_STA, 0, NotSerialized) 9 | { 10 | If (_OSI ("Darwin")) 11 | { 12 | Return (0x0F) 13 | } 14 | Else 15 | { 16 | Return (Zero) 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Resources/ACPI/SSDT-STAS.dsl: -------------------------------------------------------------------------------- 1 | // Fix RTC _STA bug 2 | 3 | DefinitionBlock ("", "SSDT", 1, "HACK", "_STAS", 0x00000000) 4 | { 5 | External (STAS, IntObj) 6 | 7 | Scope (\) 8 | { 9 | Method (_INI, 0, NotSerialized) 10 | { 11 | If (_OSI ("Darwin")) 12 | { 13 | STAS = One 14 | } 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Resources/Audio/Vendors.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>AMD</key> 6 | <integer>4098</integer> 7 | <key>AMDZEN</key> 8 | <integer>4130</integer> 9 | <key>AnalogDevices</key> 10 | <integer>4564</integer> 11 | <key>CirrusLogic</key> 12 | <integer>4115</integer> 13 | <key>Conexant</key> 14 | <integer>5361</integer> 15 | <key>Creative</key> 16 | <integer>4354</integer> 17 | <key>IDT</key> 18 | <integer>4381</integer> 19 | <key>Intel</key> 20 | <integer>32902</integer> 21 | <key>NVIDIA</key> 22 | <integer>4318</integer> 23 | <key>Realtek</key> 24 | <integer>4332</integer> 25 | <key>SigmaTel</key> 26 | <integer>33668</integer> 27 | <key>VIA</key> 28 | <integer>4358</integer> 29 | </dict> 30 | </plist> 31 | -------------------------------------------------------------------------------- /Resources/DisplayMergeNub/DisplayMergeNub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/DisplayMergeNub/DisplayMergeNub -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Broadwell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Broadwell.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Cannon Lake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Cannon Lake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Coffee Lake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Coffee Lake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Haswell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Haswell.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Ice Lake (HP).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Ice Lake (HP).bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Ice Lake (LP).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Ice Lake (LP).bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Ivy Bridge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Ivy Bridge.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Kaby Lake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Kaby Lake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Sandy Bridge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Sandy Bridge.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.13.6/Skylake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.13.6/Skylake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Broadwell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Broadwell.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Coffee Lake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Coffee Lake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Haswell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Haswell.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Ice Lake (LP).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Ice Lake (LP).bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Ivy Bridge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Ivy Bridge.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Kaby Lake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Kaby Lake.bin -------------------------------------------------------------------------------- /Resources/Framebuffer/macOS 10.14/Skylake.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Framebuffer/macOS 10.14/Skylake.bin -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/css/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/css/icon.png -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/en.lproj/Hackintool.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/en.lproj/Hackintool.helpindex -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | HPDBookTitle = "Hackintool Help"; 2 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/en.lproj/index.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 4 | <head> 5 | <link rel="stylesheet" href="../css/style.css" media="all" /> 6 | <meta name="AppleTitle" content="Hackintool Help"> 7 | <meta name="AppleIcon" content="../images/icon.png"> 8 | </head> 9 | <body class="Normal"> 10 | <a class="CenterImage"><img src="../images/icon.png" width="256" height="256"></a> 11 | <br /> 12 | <a class="Heading1" name="Index">Index</a> 13 | <p><a href="Audio.html">Audio Patching</a></p> 14 | <p><a href="Display.html">Display EDID Patching</a></p> 15 | <p><a href="USB.html">USB Patching</a></p> 16 | </body> 17 | </html> 18 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/images/icon.png -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/ko.lproj/Hackintool.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/ko.lproj/Hackintool.helpindex -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | HPDBookTitle = "해킨토시 도움말"; 2 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/ko.lproj/index.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko"> 4 | <head> 5 | <link rel="stylesheet" href="../css/style.css" media="all" /> 6 | <meta name="AppleTitle" content="Hackintool 도움말"> 7 | <meta name="AppleIcon" content="../images/icon.png"> 8 | </head> 9 | <body class="Normal"> 10 | <a class="CenterImage"><img src="../images/icon.png" width="256" height="256"></a> 11 | <br /> 12 | <a class="Heading1" name="Index">목차</a> 13 | <p><a href="Audio.html">오디오 패치</a></p> 14 | <p><a href="Display.html">디스플레이 EDID 패치</a></p> 15 | <p><a href="USB.html">USB 패치</a></p> 16 | </body> 17 | </html> 18 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/tr.lproj/Hackintool.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/tr.lproj/Hackintool.helpindex -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | HPDBookTitle = "Hackintool Yardım"; 2 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/tr.lproj/index.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="tr" lang="tr"> 4 | <head> 5 | <link rel="stylesheet" href="../css/style.css" media="all" /> 6 | <meta name="AppleTitle" content="Hackintool Yardım"> 7 | <meta name="AppleIcon" content="../images/icon.png"> 8 | </head> 9 | <body class="Normal"> 10 | <a class="CenterImage"><img src="../images/icon.png" width="256" height="256"></a> 11 | <br /> 12 | <a class="Heading1" name="Index">Indeks</a> 13 | <p><a href="Audio.html">Hackintool ile Ses Yaması</a></p> 14 | <p><a href="Display.html">Ekran EDID Yamalama</a></p> 15 | <p><a href="USB.html">USB Yamalama</a></p> 16 | </body> 17 | </html> 18 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/zh-Hans.lproj/Hackintool.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Help/Contents/Resources/zh-Hans.lproj/Hackintool.helpindex -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | HPDBookTitle = "Hackintool 帮助"; 2 | -------------------------------------------------------------------------------- /Resources/Help/Contents/Resources/zh-Hans.lproj/index.html: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-Hans" lang="zh-Hans"> 4 | <head> 5 | <link rel="stylesheet" href="../css/style.css" media="all" /> 6 | <meta name="AppleTitle" content="Hackintool 帮助"> 7 | <meta name="AppleIcon" content="../images/icon.png"> 8 | </head> 9 | <body class="Normal"> 10 | <a class="CenterImage"><img src="../images/icon.png" width="256" height="256"></a> 11 | <br /> 12 | <a class="Heading1" name="Index">目录</a> 13 | <p><a href="Audio.html">音频修补</a></p> 14 | <p><a href="Display.html">显示器EDID修补</a></p> 15 | <p><a href="USB.html">USB定制</a></p> 16 | </body> 17 | </html> 18 | -------------------------------------------------------------------------------- /Resources/Intel/SpoofAudio.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>80860C0C</key> 6 | <integer>2572</integer> 7 | <key>8086A170</key> 8 | <integer>40304</integer> 9 | <key>80869D70</key> 10 | <integer>41328</integer> 11 | <key>80869D71</key> 12 | <integer>41328</integer> 13 | <key>80869D74</key> 14 | <integer>41328</integer> 15 | <key>8086A171</key> 16 | <integer>41328</integer> 17 | <key>8086A2F0</key> 18 | <integer>41328</integer> 19 | <key>8086A348</key> 20 | <integer>41328</integer> 21 | <key>80869DC8</key> 22 | <integer>41328</integer> 23 | </dict> 24 | </plist> 25 | -------------------------------------------------------------------------------- /Resources/Intel/SystemConfigs/Gigabyte/Designare Z390 [i9-9900K_ZISQO].plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>Devices</key> 6 | <dict> 7 | <key>Properties</key> 8 | <dict> 9 | <key>PciRoot(0x0)/Pci(0x2,0x0)</key> 10 | <dict> 11 | <key>AAPL,ig-platform-id</key> 12 | <data> 13 | BwCbPg== 14 | </data> 15 | <key>AAPL,model</key> 16 | <string>Intel UHD 630</string> 17 | <key>AAPL,slot-name</key> 18 | <string>internal</string> 19 | <key>device-id</key> 20 | <data> 21 | kj4AAA== 22 | </data> 23 | <key>enable-hdmi20</key> 24 | <data> 25 | AQAAAA== 26 | </data> 27 | <key>framebuffer-patch-enable</key> 28 | <data> 29 | AQAAAA== 30 | </data> 31 | <key>framebuffer-stolenmem</key> 32 | <data> 33 | AAAwAQ== 34 | </data> 35 | </dict> 36 | </dict> 37 | </dict> 38 | </dict> 39 | </plist> 40 | -------------------------------------------------------------------------------- /Resources/Kexts/AirPortAtheros40.kext/Contents/MacOS/AirPortAtheros40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/AirPortAtheros40.kext/Contents/MacOS/AirPortAtheros40 -------------------------------------------------------------------------------- /Resources/Kexts/AirPortAtheros40.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortDriverAtheros9388</string> 7 | <key>BuildVersion</key> 8 | <string>13872</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>7.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>700.74.5</string> 13 | <key>ProjectName</key> 14 | <string>AirPortDriverAtheros9388</string> 15 | <key>SourceVersion</key> 16 | <string>700074005000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/AppleAHCIPortHotplug.kext/Contents/MacOS/AppleAHCIPort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/AppleAHCIPortHotplug.kext/Contents/MacOS/AppleAHCIPort -------------------------------------------------------------------------------- /Resources/Kexts/AppleAHCIPortHotplug.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AppleAHCI</string> 7 | <key>BuildVersion</key> 8 | <string>1007</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>399.50.2</string> 11 | <key>CFBundleVersion</key> 12 | <string>399.50.2</string> 13 | <key>ProjectName</key> 14 | <string>AppleAHCI</string> 15 | <key>SourceVersion</key> 16 | <string>329050002000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/AppleIntelInfo.kext/Contents/MacOS/AppleIntelInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/AppleIntelInfo.kext/Contents/MacOS/AppleIntelInfo -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/MacOS/IO80211Family: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/MacOS/IO80211Family -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortAtheros40.kext/Contents/MacOS/AirPortAtheros40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortAtheros40.kext/Contents/MacOS/AirPortAtheros40 -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortAtheros40.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortDriverAtheros9388</string> 7 | <key>BuildVersion</key> 8 | <string>13987</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>7.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>700.74.5</string> 13 | <key>ProjectName</key> 14 | <string>AirPortDriverAtheros9388</string> 15 | <key>SourceVersion</key> 16 | <string>700074005000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4331.kext/Contents/MacOS/AirPortBrcm4331: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4331.kext/Contents/MacOS/AirPortBrcm4331 -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4331.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortDriverBrcm4331</string> 7 | <key>BuildVersion</key> 8 | <string>4455</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>8.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>800.21.30</string> 13 | <key>ProjectName</key> 14 | <string>AirPortDriverBrcm4331</string> 15 | <key>SourceVersion</key> 16 | <string>800021030000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4360.kext/Contents/MacOS/AirPortBrcm4360: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4360.kext/Contents/MacOS/AirPortBrcm4360 -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcm4360.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortDriverBrcm4360</string> 7 | <key>BuildVersion</key> 8 | <string>12</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>12.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>1250.20.1a4</string> 13 | <key>ProjectName</key> 14 | <string>AirPortDriverBrcm4360</string> 15 | <key>SourceVersion</key> 16 | <string>1250020001004000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/MacOS/AirPortBrcmNIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/MacOS/AirPortBrcmNIC -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortDriverBrcmNIC</string> 7 | <key>BuildVersion</key> 8 | <string>12</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>12.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>1242.32.1a1</string> 13 | <key>ProjectName</key> 14 | <string>AirPortDriverBrcmNIC</string> 15 | <key>SourceVersion</key> 16 | <string>1242032001001000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/IO80211NetBooter.kext/Contents/MacOS/IO80211NetBooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Kexts/IO80211Family.kext/Contents/PlugIns/IO80211NetBooter.kext/Contents/MacOS/IO80211NetBooter -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/PlugIns/IO80211NetBooter.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortFamily</string> 7 | <key>BuildVersion</key> 8 | <string>12</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>12.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>1200.12.2</string> 13 | <key>ProjectName</key> 14 | <string>AirPortFamily_kexts</string> 15 | <key>SourceVersion</key> 16 | <string>1406015001000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/Kexts/IO80211Family.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>BuildAliasOf</key> 6 | <string>AirPortFamily</string> 7 | <key>BuildVersion</key> 8 | <string>12</string> 9 | <key>CFBundleShortVersionString</key> 10 | <string>12.0</string> 11 | <key>CFBundleVersion</key> 12 | <string>1200.12.2</string> 13 | <key>ProjectName</key> 14 | <string>AirPortFamily_kexts</string> 15 | <key>SourceVersion</key> 16 | <string>1406015001000000</string> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /Resources/USB/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/USB/usb.ids -------------------------------------------------------------------------------- /Resources/Utilities/iasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Utilities/iasl -------------------------------------------------------------------------------- /Resources/Utilities/refs.txt: -------------------------------------------------------------------------------- 1 | External(MDBG, MethodObj, 1) 2 | External(_GPE.MMTB, MethodObj, 0) 3 | External(_SB.PCI0.LPCB.H_EC.ECWT, MethodObj, 2) 4 | External(_SB.PCI0.LPCB.H_EC.ECRD, MethodObj, 1) 5 | External(_SB.PCI0.LPCB.H_EC.ECMD, MethodObj, 1) 6 | External(_SB.PCI0.PEG0.PEGP.SGPO, MethodObj, 2) 7 | External(_SB.PCI0.GFX0.DD02._BCM, MethodObj, 1) 8 | External(_SB.PCI0.SAT0.SDSM, MethodObj, 4) 9 | External(_GPE.VHOV, MethodObj, 3) 10 | External(_SB.PCI0.XHC.RHUB.TPLD, MethodObj, 2) 11 | -------------------------------------------------------------------------------- /Resources/Windows/WinUTCOff.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Windows/WinUTCOff.reg -------------------------------------------------------------------------------- /Resources/Windows/WinUTCOn.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/Resources/Windows/WinUTCOn.reg -------------------------------------------------------------------------------- /images/Hackintool01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool01.png -------------------------------------------------------------------------------- /images/Hackintool02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool02.png -------------------------------------------------------------------------------- /images/Hackintool03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool03.png -------------------------------------------------------------------------------- /images/Hackintool04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool04.png -------------------------------------------------------------------------------- /images/Hackintool05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool05.png -------------------------------------------------------------------------------- /images/Hackintool06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool06.png -------------------------------------------------------------------------------- /images/Hackintool07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool07.png -------------------------------------------------------------------------------- /images/Hackintool08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool08.png -------------------------------------------------------------------------------- /images/Hackintool09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool09.png -------------------------------------------------------------------------------- /images/Hackintool10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool10.png -------------------------------------------------------------------------------- /images/Hackintool11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool11.png -------------------------------------------------------------------------------- /images/Hackintool12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool12.png -------------------------------------------------------------------------------- /images/Hackintool13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool13.png -------------------------------------------------------------------------------- /images/Hackintool14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool14.png -------------------------------------------------------------------------------- /images/Hackintool15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbaker76/Hackintool/f40647681363f4124a685afdb19e336f5c1f292c/images/Hackintool15.png --------------------------------------------------------------------------------