├── .gitignore ├── BetterReachability.h ├── BetterReachability.plist ├── LICENSE ├── Makefile ├── README.md ├── Tweak.xm ├── betterreachability.png ├── betterreachabilitypreferences ├── BRRootListController.h ├── BRRootListController.m ├── Cells.h ├── Cells.m ├── Makefile ├── Resources │ ├── Info.plist │ └── Root.plist └── entry.plist └── control /.gitignore: -------------------------------------------------------------------------------- 1 | /.theos 2 | obj 3 | .DS_Store 4 | /*.xcodeproj 5 | /packages -------------------------------------------------------------------------------- /BetterReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/BetterReachability.h -------------------------------------------------------------------------------- /BetterReachability.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/BetterReachability.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/Tweak.xm -------------------------------------------------------------------------------- /betterreachability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachability.png -------------------------------------------------------------------------------- /betterreachabilitypreferences/BRRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/BRRootListController.h -------------------------------------------------------------------------------- /betterreachabilitypreferences/BRRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/BRRootListController.m -------------------------------------------------------------------------------- /betterreachabilitypreferences/Cells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/Cells.h -------------------------------------------------------------------------------- /betterreachabilitypreferences/Cells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/Cells.m -------------------------------------------------------------------------------- /betterreachabilitypreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/Makefile -------------------------------------------------------------------------------- /betterreachabilitypreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/Resources/Info.plist -------------------------------------------------------------------------------- /betterreachabilitypreferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/Resources/Root.plist -------------------------------------------------------------------------------- /betterreachabilitypreferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/betterreachabilitypreferences/entry.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/BetterReachability/HEAD/control --------------------------------------------------------------------------------