├── .gitignore ├── .gitmodules ├── Bookmark Location in Geranium ├── ActionViewController.swift ├── Base.lproj │ └── MainInterface.storyboard ├── Bookmark Location in Geranium.entitlements ├── Info.plist ├── Media.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── slice of cheese.png │ ├── Contents.json │ └── TouchBarBezel.colorset │ │ └── Contents.json └── entitlements.plist ├── Geranium.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Geranium.xcscheme ├── Geranium ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── geranium.png │ └── Contents.json ├── BetaChecker.swift ├── ByeTime │ ├── ByeTimeHelper.swift │ └── ByeTimeView.swift ├── Cleaner │ ├── CleanerView.swift │ ├── CustomPaths.swift │ ├── FileCleaner.swift │ ├── NotifHelp.swift │ ├── Paths.swift │ └── ProgressBar.swift ├── ContentView.swift ├── DaemonMan │ ├── CurrentlyDisabledDaemonView.swift │ ├── DaemonDisabler.swift │ ├── DaemonView.swift │ └── DaemonWelcomeView.swift ├── Geranium-Bringing-Header.h ├── Geranium.entitlements ├── GeraniumApp.swift ├── HomeView.swift ├── Icons │ ├── Beta.png │ ├── Bouquet.png │ └── Flore.png ├── Info.plist ├── Libs │ ├── Addon.swift │ ├── LogHelper.swift │ ├── RootHelperMan.swift │ └── TrollStore │ │ ├── CoreServices.h │ │ ├── TSUtil.h │ │ └── TSUtil.m ├── LocSim │ ├── BookMark │ │ ├── BookMarkHelper.swift │ │ └── BookMarkSlider.swift │ ├── CoordTransform.swift │ ├── CustomMapView.swift │ ├── LocSimManager.swift │ ├── LocSimPrivateHeaders.h │ └── LocSimView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SettingsView.swift ├── The Supviser │ └── SuperviseView.swift ├── Translations │ ├── InfoPlist.xcstrings │ └── Localizable.xcstrings └── WelcomeView.swift ├── LICENSE.md ├── README.md ├── entitlements.plist ├── icon.sketch └── ipabuild.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bookmark Location in Geranium/ActionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/ActionViewController.swift -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Bookmark Location in Geranium.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Bookmark Location in Geranium.entitlements -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Info.plist -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Media.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Media.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Media.xcassets/AppIcon.appiconset/slice of cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Media.xcassets/AppIcon.appiconset/slice of cheese.png -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Bookmark Location in Geranium/Media.xcassets/TouchBarBezel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/Media.xcassets/TouchBarBezel.colorset/Contents.json -------------------------------------------------------------------------------- /Bookmark Location in Geranium/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Bookmark Location in Geranium/entitlements.plist -------------------------------------------------------------------------------- /Geranium.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Geranium.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Geranium.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Geranium.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Geranium.xcodeproj/xcshareddata/xcschemes/Geranium.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium.xcodeproj/xcshareddata/xcschemes/Geranium.xcscheme -------------------------------------------------------------------------------- /Geranium/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Geranium/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Geranium/Assets.xcassets/AppIcon.appiconset/geranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Assets.xcassets/AppIcon.appiconset/geranium.png -------------------------------------------------------------------------------- /Geranium/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Geranium/BetaChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/BetaChecker.swift -------------------------------------------------------------------------------- /Geranium/ByeTime/ByeTimeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/ByeTime/ByeTimeHelper.swift -------------------------------------------------------------------------------- /Geranium/ByeTime/ByeTimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/ByeTime/ByeTimeView.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/CleanerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/CleanerView.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/CustomPaths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/CustomPaths.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/FileCleaner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/FileCleaner.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/NotifHelp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/NotifHelp.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/Paths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/Paths.swift -------------------------------------------------------------------------------- /Geranium/Cleaner/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Cleaner/ProgressBar.swift -------------------------------------------------------------------------------- /Geranium/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/ContentView.swift -------------------------------------------------------------------------------- /Geranium/DaemonMan/CurrentlyDisabledDaemonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/DaemonMan/CurrentlyDisabledDaemonView.swift -------------------------------------------------------------------------------- /Geranium/DaemonMan/DaemonDisabler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/DaemonMan/DaemonDisabler.swift -------------------------------------------------------------------------------- /Geranium/DaemonMan/DaemonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/DaemonMan/DaemonView.swift -------------------------------------------------------------------------------- /Geranium/DaemonMan/DaemonWelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/DaemonMan/DaemonWelcomeView.swift -------------------------------------------------------------------------------- /Geranium/Geranium-Bringing-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Geranium-Bringing-Header.h -------------------------------------------------------------------------------- /Geranium/Geranium.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Geranium.entitlements -------------------------------------------------------------------------------- /Geranium/GeraniumApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/GeraniumApp.swift -------------------------------------------------------------------------------- /Geranium/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/HomeView.swift -------------------------------------------------------------------------------- /Geranium/Icons/Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Icons/Beta.png -------------------------------------------------------------------------------- /Geranium/Icons/Bouquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Icons/Bouquet.png -------------------------------------------------------------------------------- /Geranium/Icons/Flore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Icons/Flore.png -------------------------------------------------------------------------------- /Geranium/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Info.plist -------------------------------------------------------------------------------- /Geranium/Libs/Addon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/Addon.swift -------------------------------------------------------------------------------- /Geranium/Libs/LogHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/LogHelper.swift -------------------------------------------------------------------------------- /Geranium/Libs/RootHelperMan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/RootHelperMan.swift -------------------------------------------------------------------------------- /Geranium/Libs/TrollStore/CoreServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/TrollStore/CoreServices.h -------------------------------------------------------------------------------- /Geranium/Libs/TrollStore/TSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/TrollStore/TSUtil.h -------------------------------------------------------------------------------- /Geranium/Libs/TrollStore/TSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Libs/TrollStore/TSUtil.m -------------------------------------------------------------------------------- /Geranium/LocSim/BookMark/BookMarkHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/BookMark/BookMarkHelper.swift -------------------------------------------------------------------------------- /Geranium/LocSim/BookMark/BookMarkSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/BookMark/BookMarkSlider.swift -------------------------------------------------------------------------------- /Geranium/LocSim/CoordTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/CoordTransform.swift -------------------------------------------------------------------------------- /Geranium/LocSim/CustomMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/CustomMapView.swift -------------------------------------------------------------------------------- /Geranium/LocSim/LocSimManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/LocSimManager.swift -------------------------------------------------------------------------------- /Geranium/LocSim/LocSimPrivateHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/LocSimPrivateHeaders.h -------------------------------------------------------------------------------- /Geranium/LocSim/LocSimView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/LocSim/LocSimView.swift -------------------------------------------------------------------------------- /Geranium/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Geranium/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/SettingsView.swift -------------------------------------------------------------------------------- /Geranium/The Supviser/SuperviseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/The Supviser/SuperviseView.swift -------------------------------------------------------------------------------- /Geranium/Translations/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Translations/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Geranium/Translations/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/Translations/Localizable.xcstrings -------------------------------------------------------------------------------- /Geranium/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/Geranium/WelcomeView.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/README.md -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/entitlements.plist -------------------------------------------------------------------------------- /icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/icon.sketch -------------------------------------------------------------------------------- /ipabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c22dev/Geranium/HEAD/ipabuild.sh --------------------------------------------------------------------------------