├── .gitignore ├── Makefile ├── PriorityHub.plist ├── README.md ├── To Do.txt ├── control ├── images ├── iOS 10 Mockup.png ├── icons │ ├── Icon-58.png │ ├── Icon-58@2x.png │ ├── Icon-58@3x.png │ ├── Icon-60.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-87.png │ ├── Icon-87@2x.png │ ├── Icon-87@3x.png │ └── masked │ │ ├── PriorityHub@2x.png │ │ └── PriorityHub@3x.png └── old screenshots │ ├── screenshot 1.png │ ├── screenshot 2.PNG │ ├── screenshot 3.PNG │ └── screenshot 4.PNG ├── preferences ├── Makefile ├── PHLockScreenPrefs.mm ├── PHNCPrefs.mm ├── PHPrefsHeaderCell.m ├── PHRoot.mm ├── PHSubtitleSwitchTableCell.m ├── PHVerticalAdjustmentTableCell.m ├── Resources │ ├── Github@2x.png │ ├── Github@3x.png │ ├── Info.plist │ ├── LockScreen.plist │ ├── NotificationCenter.plist │ ├── PriorityHub@2x.png │ ├── PriorityHub@3x.png │ ├── Root.plist │ ├── Twitter@2x.png │ └── Twitter@3x.png └── entry.plist └── tweak ├── Headers.h ├── PHAppView.h ├── PHAppView.xm ├── PHContainerView.h ├── PHContainerView.xm ├── PHPullToClearView.h ├── PHPullToClearView.m ├── Tweak.xm └── colorbadges_api.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/Makefile -------------------------------------------------------------------------------- /PriorityHub.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/PriorityHub.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/README.md -------------------------------------------------------------------------------- /To Do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/To Do.txt -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/control -------------------------------------------------------------------------------- /images/iOS 10 Mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/iOS 10 Mockup.png -------------------------------------------------------------------------------- /images/icons/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-58.png -------------------------------------------------------------------------------- /images/icons/Icon-58@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-58@2x.png -------------------------------------------------------------------------------- /images/icons/Icon-58@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-58@3x.png -------------------------------------------------------------------------------- /images/icons/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-60.png -------------------------------------------------------------------------------- /images/icons/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-60@2x.png -------------------------------------------------------------------------------- /images/icons/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-60@3x.png -------------------------------------------------------------------------------- /images/icons/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-87.png -------------------------------------------------------------------------------- /images/icons/Icon-87@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-87@2x.png -------------------------------------------------------------------------------- /images/icons/Icon-87@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/Icon-87@3x.png -------------------------------------------------------------------------------- /images/icons/masked/PriorityHub@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/masked/PriorityHub@2x.png -------------------------------------------------------------------------------- /images/icons/masked/PriorityHub@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/icons/masked/PriorityHub@3x.png -------------------------------------------------------------------------------- /images/old screenshots/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/old screenshots/screenshot 1.png -------------------------------------------------------------------------------- /images/old screenshots/screenshot 2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/old screenshots/screenshot 2.PNG -------------------------------------------------------------------------------- /images/old screenshots/screenshot 3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/old screenshots/screenshot 3.PNG -------------------------------------------------------------------------------- /images/old screenshots/screenshot 4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/images/old screenshots/screenshot 4.PNG -------------------------------------------------------------------------------- /preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Makefile -------------------------------------------------------------------------------- /preferences/PHLockScreenPrefs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHLockScreenPrefs.mm -------------------------------------------------------------------------------- /preferences/PHNCPrefs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHNCPrefs.mm -------------------------------------------------------------------------------- /preferences/PHPrefsHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHPrefsHeaderCell.m -------------------------------------------------------------------------------- /preferences/PHRoot.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHRoot.mm -------------------------------------------------------------------------------- /preferences/PHSubtitleSwitchTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHSubtitleSwitchTableCell.m -------------------------------------------------------------------------------- /preferences/PHVerticalAdjustmentTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/PHVerticalAdjustmentTableCell.m -------------------------------------------------------------------------------- /preferences/Resources/Github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Github@2x.png -------------------------------------------------------------------------------- /preferences/Resources/Github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Github@3x.png -------------------------------------------------------------------------------- /preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Info.plist -------------------------------------------------------------------------------- /preferences/Resources/LockScreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/LockScreen.plist -------------------------------------------------------------------------------- /preferences/Resources/NotificationCenter.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/NotificationCenter.plist -------------------------------------------------------------------------------- /preferences/Resources/PriorityHub@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/PriorityHub@2x.png -------------------------------------------------------------------------------- /preferences/Resources/PriorityHub@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/PriorityHub@3x.png -------------------------------------------------------------------------------- /preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Root.plist -------------------------------------------------------------------------------- /preferences/Resources/Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Twitter@2x.png -------------------------------------------------------------------------------- /preferences/Resources/Twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/Resources/Twitter@3x.png -------------------------------------------------------------------------------- /preferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/preferences/entry.plist -------------------------------------------------------------------------------- /tweak/Headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/Headers.h -------------------------------------------------------------------------------- /tweak/PHAppView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHAppView.h -------------------------------------------------------------------------------- /tweak/PHAppView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHAppView.xm -------------------------------------------------------------------------------- /tweak/PHContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHContainerView.h -------------------------------------------------------------------------------- /tweak/PHContainerView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHContainerView.xm -------------------------------------------------------------------------------- /tweak/PHPullToClearView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHPullToClearView.h -------------------------------------------------------------------------------- /tweak/PHPullToClearView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/PHPullToClearView.m -------------------------------------------------------------------------------- /tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/Tweak.xm -------------------------------------------------------------------------------- /tweak/colorbadges_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/PriorityHub/HEAD/tweak/colorbadges_api.h --------------------------------------------------------------------------------