├── .gitignore ├── Makefile ├── README.md ├── Tweak.xm ├── WhatsTheDate.plist ├── control ├── packages └── com.icraze.whatsthedate_1.1_iphoneos-arm.deb └── whatsthedateprefs ├── Makefile ├── Resources ├── Info.plist └── Root.plist ├── WTDRootListController.h ├── WTDRootListController.m └── entry.plist /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.theos 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/Tweak.xm -------------------------------------------------------------------------------- /WhatsTheDate.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/WhatsTheDate.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/control -------------------------------------------------------------------------------- /packages/com.icraze.whatsthedate_1.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/packages/com.icraze.whatsthedate_1.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /whatsthedateprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/Makefile -------------------------------------------------------------------------------- /whatsthedateprefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/Resources/Info.plist -------------------------------------------------------------------------------- /whatsthedateprefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/Resources/Root.plist -------------------------------------------------------------------------------- /whatsthedateprefs/WTDRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/WTDRootListController.h -------------------------------------------------------------------------------- /whatsthedateprefs/WTDRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/WTDRootListController.m -------------------------------------------------------------------------------- /whatsthedateprefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCrazeiOS/WhatsTheDate/HEAD/whatsthedateprefs/entry.plist --------------------------------------------------------------------------------