├── .gitignore ├── LICENSE ├── Makefile ├── Prefs ├── Info.plist ├── Makefile ├── NSTask.h ├── Preferences.h ├── Preferences.m ├── Resources │ ├── Prefs.plist │ ├── base.lproj │ │ └── Prefs.strings │ ├── header.png │ ├── icon.png │ ├── icon512.png │ ├── icon512_rounded.png │ ├── icon512_transparent.png │ ├── icon@2x.png │ ├── icon_transparent.png │ ├── icon_transparent@2x.png │ ├── otherTweaks │ │ ├── appaze@2x.png │ │ ├── quickPrefs@2x.png │ │ ├── sleepizy@2x.png │ │ ├── switchShades@2x.png │ │ └── videoSwipes@2x.png │ └── zh_CN.lproj │ │ └── Prefs.strings └── entry.plist ├── README.md ├── RenameProject.sh ├── Tweak ├── Makefile ├── PanCake.plist ├── Tweak---2.xm ├── Tweak.h ├── Tweak.xm └── Tweak.xm--- ├── control ├── debs ├── com.anthopak.pancake_2.0_iphoneos-arm.deb ├── com.anthopak.pancake_2.2.1_iphoneos-arm.deb └── com.anthopak.pancake_2.2_iphoneos-arm.deb └── showModalOnError.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Makefile -------------------------------------------------------------------------------- /Prefs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Info.plist -------------------------------------------------------------------------------- /Prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Makefile -------------------------------------------------------------------------------- /Prefs/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/NSTask.h -------------------------------------------------------------------------------- /Prefs/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Preferences.h -------------------------------------------------------------------------------- /Prefs/Preferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Preferences.m -------------------------------------------------------------------------------- /Prefs/Resources/Prefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/Prefs.plist -------------------------------------------------------------------------------- /Prefs/Resources/base.lproj/Prefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/base.lproj/Prefs.strings -------------------------------------------------------------------------------- /Prefs/Resources/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/header.png -------------------------------------------------------------------------------- /Prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon512.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon512_rounded.png -------------------------------------------------------------------------------- /Prefs/Resources/icon512_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon512_transparent.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon_transparent.png -------------------------------------------------------------------------------- /Prefs/Resources/icon_transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/icon_transparent@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/appaze@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/otherTweaks/appaze@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/quickPrefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/otherTweaks/quickPrefs@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/sleepizy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/otherTweaks/sleepizy@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/switchShades@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/otherTweaks/switchShades@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/otherTweaks/videoSwipes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/otherTweaks/videoSwipes@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/zh_CN.lproj/Prefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/Resources/zh_CN.lproj/Prefs.strings -------------------------------------------------------------------------------- /Prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Prefs/entry.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/README.md -------------------------------------------------------------------------------- /RenameProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/RenameProject.sh -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/PanCake.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/PanCake.plist -------------------------------------------------------------------------------- /Tweak/Tweak---2.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/Tweak---2.xm -------------------------------------------------------------------------------- /Tweak/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/Tweak.h -------------------------------------------------------------------------------- /Tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/Tweak.xm -------------------------------------------------------------------------------- /Tweak/Tweak.xm---: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/Tweak/Tweak.xm--- -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/control -------------------------------------------------------------------------------- /debs/com.anthopak.pancake_2.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/debs/com.anthopak.pancake_2.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.anthopak.pancake_2.2.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/debs/com.anthopak.pancake_2.2.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.anthopak.pancake_2.2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/debs/com.anthopak.pancake_2.2_iphoneos-arm.deb -------------------------------------------------------------------------------- /showModalOnError.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwlsw/PanCake/HEAD/showModalOnError.sh --------------------------------------------------------------------------------