├── .gitignore ├── Cells ├── PFPropertyCell.h └── PFPropertyCell.m ├── LICENSE ├── Makefile ├── Model ├── PFFilter.h ├── PFFilter.m ├── PFFilterDetailDelegate.h ├── PFProperty.h └── PFProperty.m ├── PFFilterDetailTableViewController.h ├── PFFilterDetailTableViewController.m ├── PFFilterManager.h ├── PFFilterManager.xm ├── PFFilterTableViewController.h ├── PFFilterTableViewController.m ├── PermaFlex.plist ├── README.md ├── Tweak.xm ├── control ├── permaflex_entry.PNG ├── permaflex_properties.PNG ├── permaflex_settings.PNG ├── permaflex_variations.PNG └── permaflexpreferences ├── Makefile ├── PFApp.h ├── PFApp.m ├── PFAppCell.h ├── PFAppCell.m ├── PFClassesListController.h ├── PFClassesListController.m ├── PFRootListController.h ├── PFRootListController.xm ├── Resources ├── Info.plist └── Root.plist └── entry.plist /.gitignore: -------------------------------------------------------------------------------- 1 | /.theos 2 | obj 3 | .DS_Store 4 | /*.xcodeproj 5 | /packages -------------------------------------------------------------------------------- /Cells/PFPropertyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Cells/PFPropertyCell.h -------------------------------------------------------------------------------- /Cells/PFPropertyCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Cells/PFPropertyCell.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Makefile -------------------------------------------------------------------------------- /Model/PFFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Model/PFFilter.h -------------------------------------------------------------------------------- /Model/PFFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Model/PFFilter.m -------------------------------------------------------------------------------- /Model/PFFilterDetailDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Model/PFFilterDetailDelegate.h -------------------------------------------------------------------------------- /Model/PFProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Model/PFProperty.h -------------------------------------------------------------------------------- /Model/PFProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Model/PFProperty.m -------------------------------------------------------------------------------- /PFFilterDetailTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterDetailTableViewController.h -------------------------------------------------------------------------------- /PFFilterDetailTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterDetailTableViewController.m -------------------------------------------------------------------------------- /PFFilterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterManager.h -------------------------------------------------------------------------------- /PFFilterManager.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterManager.xm -------------------------------------------------------------------------------- /PFFilterTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterTableViewController.h -------------------------------------------------------------------------------- /PFFilterTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PFFilterTableViewController.m -------------------------------------------------------------------------------- /PermaFlex.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/PermaFlex.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/control -------------------------------------------------------------------------------- /permaflex_entry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflex_entry.PNG -------------------------------------------------------------------------------- /permaflex_properties.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflex_properties.PNG -------------------------------------------------------------------------------- /permaflex_settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflex_settings.PNG -------------------------------------------------------------------------------- /permaflex_variations.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflex_variations.PNG -------------------------------------------------------------------------------- /permaflexpreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/Makefile -------------------------------------------------------------------------------- /permaflexpreferences/PFApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFApp.h -------------------------------------------------------------------------------- /permaflexpreferences/PFApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFApp.m -------------------------------------------------------------------------------- /permaflexpreferences/PFAppCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFAppCell.h -------------------------------------------------------------------------------- /permaflexpreferences/PFAppCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFAppCell.m -------------------------------------------------------------------------------- /permaflexpreferences/PFClassesListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFClassesListController.h -------------------------------------------------------------------------------- /permaflexpreferences/PFClassesListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFClassesListController.m -------------------------------------------------------------------------------- /permaflexpreferences/PFRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFRootListController.h -------------------------------------------------------------------------------- /permaflexpreferences/PFRootListController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/PFRootListController.xm -------------------------------------------------------------------------------- /permaflexpreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/Resources/Info.plist -------------------------------------------------------------------------------- /permaflexpreferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/Resources/Root.plist -------------------------------------------------------------------------------- /permaflexpreferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/PermaFlex/HEAD/permaflexpreferences/entry.plist --------------------------------------------------------------------------------