├── .gitignore ├── Depriciated ├── PTCLabel.h └── PTCLabel.m ├── Makefile ├── PTCProvider.h ├── PTCProvider.m ├── PullToClear.plist ├── Tweak.xm ├── control ├── headers.h └── preferences ├── Makefile ├── PTCPreferenceController.h ├── PTCPreferenceController.m ├── Resources ├── Info.plist ├── Root.plist ├── Support.plist ├── defaults.plist ├── globals.plist ├── icon.png ├── icon@2x.png └── icon@3x.png └── entry.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/.gitignore -------------------------------------------------------------------------------- /Depriciated/PTCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/Depriciated/PTCLabel.h -------------------------------------------------------------------------------- /Depriciated/PTCLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/Depriciated/PTCLabel.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/Makefile -------------------------------------------------------------------------------- /PTCProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/PTCProvider.h -------------------------------------------------------------------------------- /PTCProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/PTCProvider.m -------------------------------------------------------------------------------- /PullToClear.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/PullToClear.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/control -------------------------------------------------------------------------------- /headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/headers.h -------------------------------------------------------------------------------- /preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Makefile -------------------------------------------------------------------------------- /preferences/PTCPreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/PTCPreferenceController.h -------------------------------------------------------------------------------- /preferences/PTCPreferenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/PTCPreferenceController.m -------------------------------------------------------------------------------- /preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/Info.plist -------------------------------------------------------------------------------- /preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/Root.plist -------------------------------------------------------------------------------- /preferences/Resources/Support.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/Support.plist -------------------------------------------------------------------------------- /preferences/Resources/defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/defaults.plist -------------------------------------------------------------------------------- /preferences/Resources/globals.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/globals.plist -------------------------------------------------------------------------------- /preferences/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/icon.png -------------------------------------------------------------------------------- /preferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /preferences/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/Resources/icon@3x.png -------------------------------------------------------------------------------- /preferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreatureSurvive/PullToClear/HEAD/preferences/entry.plist --------------------------------------------------------------------------------