├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Tweak.h ├── Tweak.xm ├── control ├── photoshop ├── icon.psd └── wppbanner.psd ├── pref ├── Makefile ├── Resources │ ├── Banner.jpg │ ├── Info.plist │ ├── Root.plist │ ├── base.lproj │ │ └── Root.strings │ ├── de.lproj │ │ └── Root.strings │ ├── en.lproj │ │ └── Root.strings │ ├── icon.png │ └── icon@2x.png ├── WPPRootListController.h ├── WPPRootListController.m └── entry.plist ├── release ├── com.haoict.weatherplus_1.0.0_iphoneos-arm.deb └── com.haoict.weatherplus_1.1.0_iphoneos-arm.deb └── weatherplus.plist /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | HAOUtils* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/control -------------------------------------------------------------------------------- /photoshop/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/photoshop/icon.psd -------------------------------------------------------------------------------- /photoshop/wppbanner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/photoshop/wppbanner.psd -------------------------------------------------------------------------------- /pref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Makefile -------------------------------------------------------------------------------- /pref/Resources/Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/Banner.jpg -------------------------------------------------------------------------------- /pref/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/Info.plist -------------------------------------------------------------------------------- /pref/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/Root.plist -------------------------------------------------------------------------------- /pref/Resources/base.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/base.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /pref/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/icon.png -------------------------------------------------------------------------------- /pref/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/Resources/icon@2x.png -------------------------------------------------------------------------------- /pref/WPPRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/WPPRootListController.h -------------------------------------------------------------------------------- /pref/WPPRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/WPPRootListController.m -------------------------------------------------------------------------------- /pref/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/pref/entry.plist -------------------------------------------------------------------------------- /release/com.haoict.weatherplus_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/release/com.haoict.weatherplus_1.0.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /release/com.haoict.weatherplus_1.1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/release/com.haoict.weatherplus_1.1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /weatherplus.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoict/weather-plus/HEAD/weatherplus.plist --------------------------------------------------------------------------------