├── .gitignore ├── .vscode └── ipch │ └── a29c6d105409211d │ └── mmap_address.bin ├── Asteroid.plist ├── Images ├── Cloudy.JPG ├── CloudyLock.JPG ├── Hot.JPG ├── HotClear.JPG ├── Rainy.JPG ├── RainyClear.JPG ├── Snowy.JPG ├── SnowyClear.JPG ├── Stormy.JPG ├── StormyLock.JPG ├── StormyLockForecastPleasantry.JPG ├── StormyLockForecastPreview.JPG ├── Sunny.JPG ├── SunnyClear.JPG ├── TimeWeatherBarBlack.JPG ├── TimeWeatherBarWhite.JPG ├── WeatherAppCustomBG.png ├── WeatherAppLiveBG.png ├── WeatherAppNoBG.png ├── WeatherBarBlack.JPG └── WeatherBarWhite.JPG ├── LICENSE.md ├── Makefile ├── README.md ├── asteroidlockscreen ├── ASTComponentView.h ├── ASTComponentView.m ├── ASTGestureDelegate.h ├── ASTGestureHandler.h ├── ASTGestureHandler.m ├── ASTViewController.h ├── ASTViewController.mm ├── AsteroidLockScreen.h ├── AsteroidLockScreen.plist ├── AsteroidLockScreen.xm ├── Makefile └── backgroundFunctions.xm ├── asteroidstatusbar ├── AsteroidStatusBar.plist ├── AsteroidStatusBar.xm └── Makefile ├── control ├── defaultweather ├── DefaultWeatherView.h ├── DefaultWeatherView.m ├── Makefile ├── defaultweather.h ├── defaultweather.plist └── defaultweather.xm ├── layout └── Library │ └── Frameworks │ └── AsteroidSetup.framework │ ├── AsteroidSetup │ ├── Info.plist │ ├── ic_arrow_back_ios@2x.png │ └── ic_arrow_back_ios@3x.png ├── preferences ├── LWPPreferenceController.h ├── LWPPreferenceController.m ├── Makefile ├── Resources │ ├── Asteroid.png │ ├── AsteroidSupport.plist │ ├── Info.plist │ ├── License │ ├── Root.plist │ ├── ar.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ ├── lockScreenViewKeys.strings │ │ └── statusBar.strings │ ├── base.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ ├── lockScreenViewKeys.strings │ │ └── statusBar.strings │ ├── de.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ └── lockScreenViewKeys.strings │ ├── defaults.plist │ ├── en.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ ├── lockScreenViewKeys.strings │ │ └── statusBar.strings │ ├── genSettings.plist │ ├── globals.plist │ ├── gr.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ └── lockScreenViewKeys.strings │ ├── homeScreen.plist │ ├── icon.plist │ ├── icon@2x.png │ ├── icon@3x.png │ ├── it.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ └── lockScreenViewKeys.strings │ ├── liveWeather.plist │ ├── lockScreen.plist │ ├── lockScreenViewKeys.plist │ ├── statusBar.plist │ └── tr.lproj │ │ ├── AsteroidSupport.strings │ │ ├── Localizable.strings │ │ ├── Root.strings │ │ ├── genSettings.strings │ │ ├── homeScreen.strings │ │ ├── icon.strings │ │ ├── liveWeather.strings │ │ ├── lockScreen.strings │ │ └── lockScreenViewKeys.strings └── entry.plist └── source ├── ASTCoverSheetStatusBarX.xm ├── AWeatherModel.h ├── AWeatherModel.xm ├── Asteroid.h ├── AsteroidIcon.xm ├── AsteroidServer.xm ├── ConditionImageType.h ├── ConditionOption.h ├── DGLogging.h ├── DGLogging.m ├── HomeScreenAnimation.xm ├── LWPProvider.h ├── LWPProvider.m ├── LiveWeather.h ├── LiveWeatherView.h ├── LiveWeatherView.x ├── SecondaryLockScreenView.xm ├── SetupWindow ├── ASTSetup.h └── SetupHook.xm ├── UIImage+ScaledImage.h ├── UIImage+ScaledImage.m ├── WeatherHeaders.h └── lockScreenAnimation.xm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/ipch/a29c6d105409211d/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/.vscode/ipch/a29c6d105409211d/mmap_address.bin -------------------------------------------------------------------------------- /Asteroid.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Asteroid.plist -------------------------------------------------------------------------------- /Images/Cloudy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Cloudy.JPG -------------------------------------------------------------------------------- /Images/CloudyLock.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/CloudyLock.JPG -------------------------------------------------------------------------------- /Images/Hot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Hot.JPG -------------------------------------------------------------------------------- /Images/HotClear.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/HotClear.JPG -------------------------------------------------------------------------------- /Images/Rainy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Rainy.JPG -------------------------------------------------------------------------------- /Images/RainyClear.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/RainyClear.JPG -------------------------------------------------------------------------------- /Images/Snowy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Snowy.JPG -------------------------------------------------------------------------------- /Images/SnowyClear.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/SnowyClear.JPG -------------------------------------------------------------------------------- /Images/Stormy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Stormy.JPG -------------------------------------------------------------------------------- /Images/StormyLock.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/StormyLock.JPG -------------------------------------------------------------------------------- /Images/StormyLockForecastPleasantry.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/StormyLockForecastPleasantry.JPG -------------------------------------------------------------------------------- /Images/StormyLockForecastPreview.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/StormyLockForecastPreview.JPG -------------------------------------------------------------------------------- /Images/Sunny.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/Sunny.JPG -------------------------------------------------------------------------------- /Images/SunnyClear.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/SunnyClear.JPG -------------------------------------------------------------------------------- /Images/TimeWeatherBarBlack.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/TimeWeatherBarBlack.JPG -------------------------------------------------------------------------------- /Images/TimeWeatherBarWhite.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/TimeWeatherBarWhite.JPG -------------------------------------------------------------------------------- /Images/WeatherAppCustomBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/WeatherAppCustomBG.png -------------------------------------------------------------------------------- /Images/WeatherAppLiveBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/WeatherAppLiveBG.png -------------------------------------------------------------------------------- /Images/WeatherAppNoBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/WeatherAppNoBG.png -------------------------------------------------------------------------------- /Images/WeatherBarBlack.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/WeatherBarBlack.JPG -------------------------------------------------------------------------------- /Images/WeatherBarWhite.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Images/WeatherBarWhite.JPG -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/README.md -------------------------------------------------------------------------------- /asteroidlockscreen/ASTComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTComponentView.h -------------------------------------------------------------------------------- /asteroidlockscreen/ASTComponentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTComponentView.m -------------------------------------------------------------------------------- /asteroidlockscreen/ASTGestureDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTGestureDelegate.h -------------------------------------------------------------------------------- /asteroidlockscreen/ASTGestureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTGestureHandler.h -------------------------------------------------------------------------------- /asteroidlockscreen/ASTGestureHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTGestureHandler.m -------------------------------------------------------------------------------- /asteroidlockscreen/ASTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTViewController.h -------------------------------------------------------------------------------- /asteroidlockscreen/ASTViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/ASTViewController.mm -------------------------------------------------------------------------------- /asteroidlockscreen/AsteroidLockScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/AsteroidLockScreen.h -------------------------------------------------------------------------------- /asteroidlockscreen/AsteroidLockScreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/AsteroidLockScreen.plist -------------------------------------------------------------------------------- /asteroidlockscreen/AsteroidLockScreen.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/AsteroidLockScreen.xm -------------------------------------------------------------------------------- /asteroidlockscreen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/Makefile -------------------------------------------------------------------------------- /asteroidlockscreen/backgroundFunctions.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidlockscreen/backgroundFunctions.xm -------------------------------------------------------------------------------- /asteroidstatusbar/AsteroidStatusBar.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidstatusbar/AsteroidStatusBar.plist -------------------------------------------------------------------------------- /asteroidstatusbar/AsteroidStatusBar.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidstatusbar/AsteroidStatusBar.xm -------------------------------------------------------------------------------- /asteroidstatusbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/asteroidstatusbar/Makefile -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/control -------------------------------------------------------------------------------- /defaultweather/DefaultWeatherView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/DefaultWeatherView.h -------------------------------------------------------------------------------- /defaultweather/DefaultWeatherView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/DefaultWeatherView.m -------------------------------------------------------------------------------- /defaultweather/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/Makefile -------------------------------------------------------------------------------- /defaultweather/defaultweather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/defaultweather.h -------------------------------------------------------------------------------- /defaultweather/defaultweather.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/defaultweather.plist -------------------------------------------------------------------------------- /defaultweather/defaultweather.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/defaultweather/defaultweather.xm -------------------------------------------------------------------------------- /layout/Library/Frameworks/AsteroidSetup.framework/AsteroidSetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/layout/Library/Frameworks/AsteroidSetup.framework/AsteroidSetup -------------------------------------------------------------------------------- /layout/Library/Frameworks/AsteroidSetup.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/layout/Library/Frameworks/AsteroidSetup.framework/Info.plist -------------------------------------------------------------------------------- /layout/Library/Frameworks/AsteroidSetup.framework/ic_arrow_back_ios@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/layout/Library/Frameworks/AsteroidSetup.framework/ic_arrow_back_ios@2x.png -------------------------------------------------------------------------------- /layout/Library/Frameworks/AsteroidSetup.framework/ic_arrow_back_ios@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/layout/Library/Frameworks/AsteroidSetup.framework/ic_arrow_back_ios@3x.png -------------------------------------------------------------------------------- /preferences/LWPPreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/LWPPreferenceController.h -------------------------------------------------------------------------------- /preferences/LWPPreferenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/LWPPreferenceController.m -------------------------------------------------------------------------------- /preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Makefile -------------------------------------------------------------------------------- /preferences/Resources/Asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/Asteroid.png -------------------------------------------------------------------------------- /preferences/Resources/AsteroidSupport.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/AsteroidSupport.plist -------------------------------------------------------------------------------- /preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/Info.plist -------------------------------------------------------------------------------- /preferences/Resources/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/License -------------------------------------------------------------------------------- /preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/Root.plist -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/ar.lproj/statusBar.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/ar.lproj/statusBar.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/base.lproj/statusBar.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/base.lproj/statusBar.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/de.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/de.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/defaults.plist -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/en.lproj/statusBar.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/en.lproj/statusBar.strings -------------------------------------------------------------------------------- /preferences/Resources/genSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/genSettings.plist -------------------------------------------------------------------------------- /preferences/Resources/globals.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/globals.plist -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/gr.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/gr.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/homeScreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/homeScreen.plist -------------------------------------------------------------------------------- /preferences/Resources/icon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/icon.plist -------------------------------------------------------------------------------- /preferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /preferences/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/icon@3x.png -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/it.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/it.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/Resources/liveWeather.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/liveWeather.plist -------------------------------------------------------------------------------- /preferences/Resources/lockScreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/lockScreen.plist -------------------------------------------------------------------------------- /preferences/Resources/lockScreenViewKeys.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/lockScreenViewKeys.plist -------------------------------------------------------------------------------- /preferences/Resources/statusBar.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/statusBar.plist -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/AsteroidSupport.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/AsteroidSupport.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/Root.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/genSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/genSettings.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/homeScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/homeScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/icon.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/icon.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/liveWeather.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/liveWeather.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/lockScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/lockScreen.strings -------------------------------------------------------------------------------- /preferences/Resources/tr.lproj/lockScreenViewKeys.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/Resources/tr.lproj/lockScreenViewKeys.strings -------------------------------------------------------------------------------- /preferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/preferences/entry.plist -------------------------------------------------------------------------------- /source/ASTCoverSheetStatusBarX.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/ASTCoverSheetStatusBarX.xm -------------------------------------------------------------------------------- /source/AWeatherModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/AWeatherModel.h -------------------------------------------------------------------------------- /source/AWeatherModel.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/AWeatherModel.xm -------------------------------------------------------------------------------- /source/Asteroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/Asteroid.h -------------------------------------------------------------------------------- /source/AsteroidIcon.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/AsteroidIcon.xm -------------------------------------------------------------------------------- /source/AsteroidServer.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/AsteroidServer.xm -------------------------------------------------------------------------------- /source/ConditionImageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/ConditionImageType.h -------------------------------------------------------------------------------- /source/ConditionOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/ConditionOption.h -------------------------------------------------------------------------------- /source/DGLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/DGLogging.h -------------------------------------------------------------------------------- /source/DGLogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/DGLogging.m -------------------------------------------------------------------------------- /source/HomeScreenAnimation.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/HomeScreenAnimation.xm -------------------------------------------------------------------------------- /source/LWPProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/LWPProvider.h -------------------------------------------------------------------------------- /source/LWPProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/LWPProvider.m -------------------------------------------------------------------------------- /source/LiveWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/LiveWeather.h -------------------------------------------------------------------------------- /source/LiveWeatherView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/LiveWeatherView.h -------------------------------------------------------------------------------- /source/LiveWeatherView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/LiveWeatherView.x -------------------------------------------------------------------------------- /source/SecondaryLockScreenView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/SecondaryLockScreenView.xm -------------------------------------------------------------------------------- /source/SetupWindow/ASTSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/SetupWindow/ASTSetup.h -------------------------------------------------------------------------------- /source/SetupWindow/SetupHook.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/SetupWindow/SetupHook.xm -------------------------------------------------------------------------------- /source/UIImage+ScaledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/UIImage+ScaledImage.h -------------------------------------------------------------------------------- /source/UIImage+ScaledImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/UIImage+ScaledImage.m -------------------------------------------------------------------------------- /source/WeatherHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/WeatherHeaders.h -------------------------------------------------------------------------------- /source/lockScreenAnimation.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightchip/Asteroid/HEAD/source/lockScreenAnimation.xm --------------------------------------------------------------------------------