├── .gitattributes ├── .gitignore ├── Makefile ├── Preferences ├── Makefile ├── Package.swift ├── Resources │ ├── Info.plist │ ├── icon.png │ ├── icon@2x.png │ ├── icon@3x.png │ ├── stella.png │ ├── tweaks │ │ ├── bloom@3x.png │ │ ├── fiona@3x.png │ │ └── ring@3x.png │ └── yan.png ├── Sources │ ├── StellaPreferences │ │ ├── Constants.swift │ │ ├── Main │ │ │ ├── Cells │ │ │ │ ├── CreditCell.swift │ │ │ │ └── LinkCell.swift │ │ │ ├── PreferenceStorage.swift │ │ │ └── Views │ │ │ │ ├── Homescreen │ │ │ │ ├── HomescreenCustomImageView.swift │ │ │ │ └── HomescreenView.swift │ │ │ │ ├── Lockscreen │ │ │ │ ├── LockscreenCustomImageView.swift │ │ │ │ └── LockscreenView.swift │ │ │ │ ├── Miscellaneous │ │ │ │ ├── CustomImageView.swift │ │ │ │ ├── ImagePicker.swift │ │ │ │ └── ImagePickerCoordinator.swift │ │ │ │ └── RootView.swift │ │ └── RootListController.swift │ └── StellaPreferencesC │ │ ├── StellaPreferences.m │ │ └── include │ │ ├── StellaPreferences.h │ │ └── module.modulemap ├── entry.plist └── theos ├── README.md ├── Tweak ├── Makefile ├── Package.swift ├── Sources │ ├── Stella │ │ ├── Core │ │ │ ├── Protocols.swift │ │ │ ├── SnowFactory.swift │ │ │ ├── StellaManager.swift │ │ │ └── StellaPreferences.swift │ │ ├── Extensions │ │ │ └── UIColor+Stella.swift │ │ ├── Hooks │ │ │ ├── Homescreen │ │ │ │ ├── SBFloatingDockViewController.x.swift │ │ │ │ ├── SBRootFolderController.x.swift │ │ │ │ └── SBRootFolderController_Dock.x.swift │ │ │ ├── Lockscreen │ │ │ │ ├── CSMainPageContentViewController.x.swift │ │ │ │ ├── SBBacklightController.x.swift │ │ │ │ └── SBLockScreenManager.x.swift │ │ │ ├── MusicPlayer │ │ │ │ ├── CSActivityItemViewController.x.swift │ │ │ │ ├── CSAdjunctItemView.x.swift │ │ │ │ ├── MRUCoverSheetViewController.x.swift │ │ │ │ └── NCNotificationListSupplementaryHostingViewController.x.swift │ │ │ └── Notifications │ │ │ │ └── NCNotificationShortLookViewController.x.swift │ │ └── Stella.x.swift │ └── StellaC │ │ ├── Tweak.m │ │ └── include │ │ ├── Tweak.h │ │ └── module.modulemap └── Stella.plist ├── control ├── generate_version.swift └── layout └── Library └── Application Support └── Stella.bundle └── snowflake.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Makefile -------------------------------------------------------------------------------- /Preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Makefile -------------------------------------------------------------------------------- /Preferences/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Package.swift -------------------------------------------------------------------------------- /Preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/Info.plist -------------------------------------------------------------------------------- /Preferences/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/icon.png -------------------------------------------------------------------------------- /Preferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /Preferences/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/icon@3x.png -------------------------------------------------------------------------------- /Preferences/Resources/stella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/stella.png -------------------------------------------------------------------------------- /Preferences/Resources/tweaks/bloom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/tweaks/bloom@3x.png -------------------------------------------------------------------------------- /Preferences/Resources/tweaks/fiona@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/tweaks/fiona@3x.png -------------------------------------------------------------------------------- /Preferences/Resources/tweaks/ring@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/tweaks/ring@3x.png -------------------------------------------------------------------------------- /Preferences/Resources/yan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Resources/yan.png -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Constants.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Cells/CreditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Cells/CreditCell.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Cells/LinkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Cells/LinkCell.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/PreferenceStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/PreferenceStorage.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Homescreen/HomescreenCustomImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Homescreen/HomescreenCustomImageView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Homescreen/HomescreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Homescreen/HomescreenView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Lockscreen/LockscreenCustomImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Lockscreen/LockscreenCustomImageView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Lockscreen/LockscreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Lockscreen/LockscreenView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/CustomImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/CustomImageView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/ImagePicker.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/ImagePickerCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/Miscellaneous/ImagePickerCoordinator.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/Main/Views/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/Main/Views/RootView.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferences/RootListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferences/RootListController.swift -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferencesC/StellaPreferences.m: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferencesC/include/StellaPreferences.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Preferences/Sources/StellaPreferencesC/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/Sources/StellaPreferencesC/include/module.modulemap -------------------------------------------------------------------------------- /Preferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Preferences/entry.plist -------------------------------------------------------------------------------- /Preferences/theos: -------------------------------------------------------------------------------- 1 | @@THEOS_PATH@@ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/README.md -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Package.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Core/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Core/Protocols.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Core/SnowFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Core/SnowFactory.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Core/StellaManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Core/StellaManager.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Core/StellaPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Core/StellaPreferences.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Extensions/UIColor+Stella.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Extensions/UIColor+Stella.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Homescreen/SBFloatingDockViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Homescreen/SBFloatingDockViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Homescreen/SBRootFolderController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Homescreen/SBRootFolderController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Homescreen/SBRootFolderController_Dock.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Homescreen/SBRootFolderController_Dock.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Lockscreen/CSMainPageContentViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Lockscreen/CSMainPageContentViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Lockscreen/SBBacklightController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Lockscreen/SBBacklightController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Lockscreen/SBLockScreenManager.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Lockscreen/SBLockScreenManager.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/MusicPlayer/CSActivityItemViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/MusicPlayer/CSActivityItemViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/MusicPlayer/CSAdjunctItemView.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/MusicPlayer/CSAdjunctItemView.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/MusicPlayer/MRUCoverSheetViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/MusicPlayer/MRUCoverSheetViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/MusicPlayer/NCNotificationListSupplementaryHostingViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/MusicPlayer/NCNotificationListSupplementaryHostingViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Hooks/Notifications/NCNotificationShortLookViewController.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Hooks/Notifications/NCNotificationShortLookViewController.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/Stella/Stella.x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/Stella/Stella.x.swift -------------------------------------------------------------------------------- /Tweak/Sources/StellaC/Tweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/StellaC/Tweak.m -------------------------------------------------------------------------------- /Tweak/Sources/StellaC/include/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/StellaC/include/Tweak.h -------------------------------------------------------------------------------- /Tweak/Sources/StellaC/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Sources/StellaC/include/module.modulemap -------------------------------------------------------------------------------- /Tweak/Stella.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/Tweak/Stella.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/control -------------------------------------------------------------------------------- /generate_version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/generate_version.swift -------------------------------------------------------------------------------- /layout/Library/Application Support/Stella.bundle/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandevelop/Stella/HEAD/layout/Library/Application Support/Stella.bundle/snowflake.png --------------------------------------------------------------------------------