├── .gitignore ├── Images ├── IMG_1236.jpg ├── IMG_1237.jpg └── IMG_1238.jpg ├── LICENSE.md ├── Makefile ├── Prefs ├── MacaronRootListController.h ├── MacaronRootListController.m ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── default.png │ ├── icon.png │ ├── icon │ │ ├── discord@1x.png │ │ ├── discord@2x.png │ │ ├── discord@3x.png │ │ ├── github@1x.png │ │ ├── github@2x.png │ │ ├── github@3x.png │ │ ├── paypal@1x.png │ │ ├── paypal@2x.png │ │ └── paypal@3x.png │ ├── icon@1x.png │ ├── icon@2x.png │ └── icon@3x.png ├── SULabelSliderCell.h ├── SULabelSliderCell.m └── entry.plist ├── README.md ├── Tweak ├── Classes │ ├── FLAnimatedImage.h │ ├── FLAnimatedImage.m │ ├── FLAnimatedImageView.h │ └── FLAnimatedImageView.m ├── Macaron.plist ├── Makefile ├── Tweak.h └── Tweak.xm ├── control └── packages ├── com.misakaproject.macaron_1.0.1_iphoneos-arm.deb └── com.misakaproject.macaron_1.0.1_iphoneos-arm64.deb /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store -------------------------------------------------------------------------------- /Images/IMG_1236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Images/IMG_1236.jpg -------------------------------------------------------------------------------- /Images/IMG_1237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Images/IMG_1237.jpg -------------------------------------------------------------------------------- /Images/IMG_1238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Images/IMG_1238.jpg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Makefile -------------------------------------------------------------------------------- /Prefs/MacaronRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/MacaronRootListController.h -------------------------------------------------------------------------------- /Prefs/MacaronRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/MacaronRootListController.m -------------------------------------------------------------------------------- /Prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Makefile -------------------------------------------------------------------------------- /Prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/Info.plist -------------------------------------------------------------------------------- /Prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/Root.plist -------------------------------------------------------------------------------- /Prefs/Resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/default.png -------------------------------------------------------------------------------- /Prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/discord@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/discord@1x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/discord@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/discord@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/discord@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/discord@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/github@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/github@1x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/github@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/github@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/paypal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/paypal@1x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/paypal@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon/paypal@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon@1x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /Prefs/SULabelSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/SULabelSliderCell.h -------------------------------------------------------------------------------- /Prefs/SULabelSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/SULabelSliderCell.m -------------------------------------------------------------------------------- /Prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Prefs/entry.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/README.md -------------------------------------------------------------------------------- /Tweak/Classes/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Classes/FLAnimatedImage.h -------------------------------------------------------------------------------- /Tweak/Classes/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Classes/FLAnimatedImage.m -------------------------------------------------------------------------------- /Tweak/Classes/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Classes/FLAnimatedImageView.h -------------------------------------------------------------------------------- /Tweak/Classes/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Classes/FLAnimatedImageView.m -------------------------------------------------------------------------------- /Tweak/Macaron.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Macaron.plist -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Tweak.h -------------------------------------------------------------------------------- /Tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/Tweak/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/control -------------------------------------------------------------------------------- /packages/com.misakaproject.macaron_1.0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/packages/com.misakaproject.macaron_1.0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /packages/com.misakaproject.macaron_1.0.1_iphoneos-arm64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/straight-tamago/macaron/HEAD/packages/com.misakaproject.macaron_1.0.1_iphoneos-arm64.deb --------------------------------------------------------------------------------