├── .gitignore ├── README.md ├── binventory.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── w0lf.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── w0lf.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── binventory.xcscheme │ └── xcschememanagement.plist ├── binventory ├── ECStatusLabelDescription.h ├── Info.plist ├── SGDirWatchDog_LICENSE.txt ├── SGDirWatchdog.h ├── SGDirWatchdog.m ├── ZKSwizzle.h ├── ZKSwizzle.m ├── ZKSwizzle_LICENSE.txt ├── binventory.m └── binventory_LICENSE.txt └── preview.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/README.md -------------------------------------------------------------------------------- /binventory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /binventory.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /binventory.xcodeproj/project.xcworkspace/xcuserdata/w0lf.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/project.xcworkspace/xcuserdata/w0lf.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcschemes/binventory.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcschemes/binventory.xcscheme -------------------------------------------------------------------------------- /binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory.xcodeproj/xcuserdata/w0lf.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /binventory/ECStatusLabelDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/ECStatusLabelDescription.h -------------------------------------------------------------------------------- /binventory/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/Info.plist -------------------------------------------------------------------------------- /binventory/SGDirWatchDog_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/SGDirWatchDog_LICENSE.txt -------------------------------------------------------------------------------- /binventory/SGDirWatchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/SGDirWatchdog.h -------------------------------------------------------------------------------- /binventory/SGDirWatchdog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/SGDirWatchdog.m -------------------------------------------------------------------------------- /binventory/ZKSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/ZKSwizzle.h -------------------------------------------------------------------------------- /binventory/ZKSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/ZKSwizzle.m -------------------------------------------------------------------------------- /binventory/ZKSwizzle_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/ZKSwizzle_LICENSE.txt -------------------------------------------------------------------------------- /binventory/binventory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/binventory.m -------------------------------------------------------------------------------- /binventory/binventory_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/binventory/binventory_LICENSE.txt -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/binventory_SIMBL/HEAD/preview.png --------------------------------------------------------------------------------