├── Dependencies ├── PLPatchMaster.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── PLPatchMaster ├── PLPatchMaster.framework │ ├── Headers │ ├── PLPatchMaster │ ├── PrivateHeaders │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Frameworks │ │ │ └── PLBlockIMP.framework │ │ │ │ ├── Headers │ │ │ │ ├── PLBlockIMP │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── PLBlockIMP.h │ │ │ │ │ ├── blockimp.h │ │ │ │ │ └── trampoline_table.h │ │ │ │ ├── PLBlockIMP │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── gentramp.sh │ │ │ │ └── Current │ │ ├── Headers │ │ │ ├── NSObject+PLPatchMaster.h │ │ │ └── PLPatchMaster.h │ │ ├── PLPatchMaster │ │ ├── PrivateHeaders │ │ │ ├── PMLog.h │ │ │ ├── SymbolBinder.hpp │ │ │ └── SymbolName.hpp │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current └── README.txt ├── LICENSE.txt ├── README.md ├── XcodePostFacto.xcodeproj └── project.pbxproj ├── XcodePostFacto ├── Info.plist ├── XPFDebugMenu.h ├── XPFDebugMenu.m ├── XPFLog.h ├── XPFViewController.m ├── XcodePostFacto.h ├── XcodePostFacto.m └── XcodePostFacto.xcplugindata ├── xpf-bootstrap ├── DVTPlugInManager.h ├── Info.plist ├── NSVisualEffectView.m ├── cfbundle_rebind.cpp ├── cfbundle_rebind.h ├── dyld_priv.h ├── rebind_table.cpp ├── rebind_table.h ├── xpf_bootstrap.h ├── xpf_bootstrap.mm ├── yosemite_objc_stubs.h └── yosemite_objc_stubs.m └── xpf-bootstrapTests └── Info.plist /Dependencies/PLPatchMaster.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework.dSYM/Contents/Resources/DWARF/PLPatchMaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework.dSYM/Contents/Resources/DWARF/PLPatchMaster -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/PLPatchMaster: -------------------------------------------------------------------------------- 1 | Versions/Current/PLPatchMaster -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/PLBlockIMP: -------------------------------------------------------------------------------- 1 | Versions/Current/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/blockimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/blockimp.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/PLBlockIMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Frameworks/PLBlockIMP.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Headers/NSObject+PLPatchMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Headers/NSObject+PLPatchMaster.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Headers/PLPatchMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Headers/PLPatchMaster.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/PLPatchMaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/PLPatchMaster -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/PMLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/PMLog.h -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/SymbolBinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/SymbolBinder.hpp -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/SymbolName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/PrivateHeaders/SymbolName.hpp -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/PLPatchMaster.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Dependencies/PLPatchMaster.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Dependencies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/Dependencies/README.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/README.md -------------------------------------------------------------------------------- /XcodePostFacto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XcodePostFacto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/Info.plist -------------------------------------------------------------------------------- /XcodePostFacto/XPFDebugMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XPFDebugMenu.h -------------------------------------------------------------------------------- /XcodePostFacto/XPFDebugMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XPFDebugMenu.m -------------------------------------------------------------------------------- /XcodePostFacto/XPFLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XPFLog.h -------------------------------------------------------------------------------- /XcodePostFacto/XPFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XPFViewController.m -------------------------------------------------------------------------------- /XcodePostFacto/XcodePostFacto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XcodePostFacto.h -------------------------------------------------------------------------------- /XcodePostFacto/XcodePostFacto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XcodePostFacto.m -------------------------------------------------------------------------------- /XcodePostFacto/XcodePostFacto.xcplugindata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/XcodePostFacto/XcodePostFacto.xcplugindata -------------------------------------------------------------------------------- /xpf-bootstrap/DVTPlugInManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/DVTPlugInManager.h -------------------------------------------------------------------------------- /xpf-bootstrap/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/Info.plist -------------------------------------------------------------------------------- /xpf-bootstrap/NSVisualEffectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/NSVisualEffectView.m -------------------------------------------------------------------------------- /xpf-bootstrap/cfbundle_rebind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/cfbundle_rebind.cpp -------------------------------------------------------------------------------- /xpf-bootstrap/cfbundle_rebind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/cfbundle_rebind.h -------------------------------------------------------------------------------- /xpf-bootstrap/dyld_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/dyld_priv.h -------------------------------------------------------------------------------- /xpf-bootstrap/rebind_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/rebind_table.cpp -------------------------------------------------------------------------------- /xpf-bootstrap/rebind_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/rebind_table.h -------------------------------------------------------------------------------- /xpf-bootstrap/xpf_bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/xpf_bootstrap.h -------------------------------------------------------------------------------- /xpf-bootstrap/xpf_bootstrap.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/xpf_bootstrap.mm -------------------------------------------------------------------------------- /xpf-bootstrap/yosemite_objc_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/yosemite_objc_stubs.h -------------------------------------------------------------------------------- /xpf-bootstrap/yosemite_objc_stubs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrap/yosemite_objc_stubs.m -------------------------------------------------------------------------------- /xpf-bootstrapTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonf/XcodePostFacto/HEAD/xpf-bootstrapTests/Info.plist --------------------------------------------------------------------------------