├── .gitignore ├── JellyLockReborn.plist ├── Makefile ├── README.md ├── SparkAppList.h ├── VIEWS ├── MediaRemote.h ├── jellylock.h └── jellylock.m ├── control ├── headers.h ├── hooks.xm ├── layout ├── .DS_Store └── Library │ ├── .DS_Store │ └── Application Support │ ├── .DS_Store │ └── JellyLockReborn │ ├── JellyLockLock.png │ ├── JellyLockLock@2x.png │ ├── camera.png │ ├── flashlight.png │ ├── jellylock_appcut_active.png │ ├── jellylock_appcut_active@2x.png │ ├── jellylock_camera_active.png │ ├── jellylock_camera_active@2x.png │ ├── jellylock_camera_inactive.png │ ├── jellylock_google_active.png │ ├── jellylock_google_active@2x.png │ ├── jellylock_google_inactive.png │ ├── jellylock_google_inactive@2x.png │ ├── jellylock_handler.png │ ├── jellylock_handler@2x.png │ ├── jellylock_handler_active.png │ ├── jellylock_handler_active@2x.png │ ├── jellylock_siri_active.png │ ├── jellylock_siri_active@2x.png │ ├── jellylock_siri_inactive.png │ ├── jellylock_siri_inactive@2x.png │ ├── jellylock_unlock_active.png │ ├── jellylock_unlock_active@2x.png │ ├── jellylock_unlock_inactive.png │ ├── jellylock_unlock_inactive@2x.png │ ├── playpause.png │ ├── sentinel.png │ └── sentinel@2x.png └── preferences ├── .DS_Store ├── AppShortcutsListController.h ├── AppShortcutsListController.m ├── AppearanceListController.h ├── AppearanceListController.m ├── JLRRootListController.h ├── JLRRootListController.m ├── Makefile ├── Resources ├── .DS_Store ├── Appearance.plist ├── Apps.plist ├── Info.plist ├── JLRBanner.png ├── JLRBanner@2x.png ├── JLRBanner@3x.png ├── Root.plist ├── Shortcuts.plist ├── email.png ├── github.png ├── icon.png ├── icon@2x.png ├── large_circle.png ├── large_circle@2x.png ├── paypal.png ├── small_circle.png └── small_circle@2x.png ├── SparkAppItem.h ├── SparkAppList.h ├── SparkAppListTableViewController.h ├── layout ├── .DS_Store └── Library │ ├── .DS_Store │ └── PreferenceLoader │ ├── .DS_Store │ └── Preferences │ └── jellylockrebornpref.plist ├── shortcutsListController.h └── shortcutsListController.m /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /JellyLockReborn.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/JellyLockReborn.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/README.md -------------------------------------------------------------------------------- /SparkAppList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/SparkAppList.h -------------------------------------------------------------------------------- /VIEWS/MediaRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/VIEWS/MediaRemote.h -------------------------------------------------------------------------------- /VIEWS/jellylock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/VIEWS/jellylock.h -------------------------------------------------------------------------------- /VIEWS/jellylock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/VIEWS/jellylock.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/control -------------------------------------------------------------------------------- /headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/headers.h -------------------------------------------------------------------------------- /hooks.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/hooks.xm -------------------------------------------------------------------------------- /layout/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/.DS_Store -------------------------------------------------------------------------------- /layout/Library/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/.DS_Store -------------------------------------------------------------------------------- /layout/Library/Application Support/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/.DS_Store -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/JellyLockLock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/JellyLockLock.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/JellyLockLock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/JellyLockLock@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/camera.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/flashlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/flashlight.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_appcut_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_appcut_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_appcut_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_appcut_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_camera_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_camera_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_camera_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_camera_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_camera_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_camera_inactive.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_google_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_google_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_google_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_google_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_google_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_google_inactive.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_google_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_google_inactive@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_handler.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_handler@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_handler@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_handler_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_handler_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_handler_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_handler_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_siri_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_siri_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_siri_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_siri_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_siri_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_siri_inactive.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_siri_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_siri_inactive@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_unlock_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_unlock_active.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_unlock_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_unlock_active@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_unlock_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_unlock_inactive.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/jellylock_unlock_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/jellylock_unlock_inactive@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/playpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/playpause.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/sentinel.png -------------------------------------------------------------------------------- /layout/Library/Application Support/JellyLockReborn/sentinel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/layout/Library/Application Support/JellyLockReborn/sentinel@2x.png -------------------------------------------------------------------------------- /preferences/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/.DS_Store -------------------------------------------------------------------------------- /preferences/AppShortcutsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/AppShortcutsListController.h -------------------------------------------------------------------------------- /preferences/AppShortcutsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/AppShortcutsListController.m -------------------------------------------------------------------------------- /preferences/AppearanceListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/AppearanceListController.h -------------------------------------------------------------------------------- /preferences/AppearanceListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/AppearanceListController.m -------------------------------------------------------------------------------- /preferences/JLRRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/JLRRootListController.h -------------------------------------------------------------------------------- /preferences/JLRRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/JLRRootListController.m -------------------------------------------------------------------------------- /preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Makefile -------------------------------------------------------------------------------- /preferences/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/.DS_Store -------------------------------------------------------------------------------- /preferences/Resources/Appearance.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/Appearance.plist -------------------------------------------------------------------------------- /preferences/Resources/Apps.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/Apps.plist -------------------------------------------------------------------------------- /preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/Info.plist -------------------------------------------------------------------------------- /preferences/Resources/JLRBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/JLRBanner.png -------------------------------------------------------------------------------- /preferences/Resources/JLRBanner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/JLRBanner@2x.png -------------------------------------------------------------------------------- /preferences/Resources/JLRBanner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/JLRBanner@3x.png -------------------------------------------------------------------------------- /preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/Root.plist -------------------------------------------------------------------------------- /preferences/Resources/Shortcuts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/Shortcuts.plist -------------------------------------------------------------------------------- /preferences/Resources/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/email.png -------------------------------------------------------------------------------- /preferences/Resources/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/github.png -------------------------------------------------------------------------------- /preferences/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/icon.png -------------------------------------------------------------------------------- /preferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /preferences/Resources/large_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/large_circle.png -------------------------------------------------------------------------------- /preferences/Resources/large_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/large_circle@2x.png -------------------------------------------------------------------------------- /preferences/Resources/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/paypal.png -------------------------------------------------------------------------------- /preferences/Resources/small_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/small_circle.png -------------------------------------------------------------------------------- /preferences/Resources/small_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/Resources/small_circle@2x.png -------------------------------------------------------------------------------- /preferences/SparkAppItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/SparkAppItem.h -------------------------------------------------------------------------------- /preferences/SparkAppList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/SparkAppList.h -------------------------------------------------------------------------------- /preferences/SparkAppListTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/SparkAppListTableViewController.h -------------------------------------------------------------------------------- /preferences/layout/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/layout/.DS_Store -------------------------------------------------------------------------------- /preferences/layout/Library/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/layout/Library/.DS_Store -------------------------------------------------------------------------------- /preferences/layout/Library/PreferenceLoader/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/layout/Library/PreferenceLoader/.DS_Store -------------------------------------------------------------------------------- /preferences/layout/Library/PreferenceLoader/Preferences/jellylockrebornpref.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/layout/Library/PreferenceLoader/Preferences/jellylockrebornpref.plist -------------------------------------------------------------------------------- /preferences/shortcutsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/shortcutsListController.h -------------------------------------------------------------------------------- /preferences/shortcutsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaDevIOS/JellyLock-Reborn/HEAD/preferences/shortcutsListController.m --------------------------------------------------------------------------------