├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── new-feature.yml │ └── ui-ux-issue.yml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── shelf │ ├── Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes] │ │ ├── Img_2.jpeg │ │ ├── img_1.jpeg │ │ ├── img_3.jpeg │ │ ├── img_4.jpeg │ │ ├── img_5.jpeg │ │ ├── img_6.jpeg │ │ └── shelved.patch │ └── Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm__Changes_.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── README.md ├── build.gradle ├── proguard-rules.pro ├── release │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── weathermaster │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── FullMoon.png │ │ ├── app │ │ │ ├── apiKeysRotation.js │ │ │ ├── app.js │ │ │ ├── apply.js │ │ │ ├── applySettings.js │ │ │ ├── auto-update.js │ │ │ ├── bg_animations.js │ │ │ ├── country-list.js │ │ │ ├── day_summary.js │ │ │ ├── fetch.js │ │ │ ├── navigate.js │ │ │ ├── renderForecastPage.js │ │ │ └── renderWeather.js │ │ ├── bridge │ │ │ ├── android.js │ │ │ └── androidNav.js │ │ ├── bundle.js │ │ ├── components-script.js │ │ │ ├── bottom-nav.js │ │ │ └── components.js │ │ ├── components │ │ │ ├── components.css │ │ │ ├── md-buttons.css │ │ │ ├── modal-ver.css │ │ │ └── segment-btns.css │ │ ├── configSource.js │ │ ├── database │ │ │ └── MainDataBase.js │ │ ├── fonts │ │ │ ├── MaterialSymbols.ttf │ │ │ ├── Product-Medium.ttf │ │ │ ├── Product-Regular.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── Roboto-Regular.ttf │ │ ├── froggie │ │ │ ├── 01d.png │ │ │ ├── 01n.png │ │ │ ├── 02d.png │ │ │ ├── 02n.png │ │ │ ├── 03d.png │ │ │ ├── 04d.png │ │ │ ├── 09d.png │ │ │ ├── 10d.png │ │ │ ├── 11d.png │ │ │ ├── 13d.png │ │ │ └── 50d.png │ │ ├── icons │ │ │ ├── error-cat.json │ │ │ ├── error.png │ │ │ ├── leaf.png │ │ │ ├── mat_shape_1.svg │ │ │ ├── moon_texture.png │ │ │ ├── prevmap.png │ │ │ ├── sun.png │ │ │ ├── very_hot.svg │ │ │ └── wind_direction.png │ │ ├── index.html │ │ ├── index.js │ │ ├── langs │ │ │ ├── langs.js │ │ │ ├── languages.json │ │ │ └── translations │ │ │ │ ├── Arabic, Saudi Arabia │ │ │ │ └── strings_ar │ │ │ │ │ └── strings.json │ │ │ │ ├── Azerbaijani │ │ │ │ └── strings_az │ │ │ │ │ └── strings.json │ │ │ │ ├── Chinese Simplified │ │ │ │ └── strings_zh │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Chinese Traditional │ │ │ │ └── strings_zh │ │ │ │ │ └── strings.json │ │ │ │ ├── Czech │ │ │ │ └── strings_cs │ │ │ │ │ └── strings.json │ │ │ │ ├── Dutch │ │ │ │ └── strings_nl │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Filipino │ │ │ │ └── strings_fil │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Finnish │ │ │ │ └── strings_fi │ │ │ │ │ └── strings.json │ │ │ │ ├── French │ │ │ │ └── strings_fr │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── German │ │ │ │ └── strings_de │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Greek │ │ │ │ └── strings_el │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Hungarian │ │ │ │ └── strings_hu │ │ │ │ │ └── strings.json │ │ │ │ ├── Italian │ │ │ │ └── strings_it │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Japanese │ │ │ │ └── strings_ja │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Korean │ │ │ │ └── strings_ko │ │ │ │ │ └── strings.json │ │ │ │ ├── Persian │ │ │ │ └── strings_fa │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Polish │ │ │ │ └── strings_pl │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Portuguese, Brazilian │ │ │ │ └── strings_pt │ │ │ │ │ └── strings.json │ │ │ │ ├── Portuguese │ │ │ │ └── strings_pt │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Romanian │ │ │ │ └── strings_ro │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Russian │ │ │ │ └── strings_ru │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Serbian (Cyrillic) │ │ │ │ └── strings_sr │ │ │ │ │ └── strings.json │ │ │ │ ├── Serbian (Latin) │ │ │ │ └── strings_sr │ │ │ │ │ └── strings.json │ │ │ │ ├── Slovenian │ │ │ │ └── strings_sl │ │ │ │ │ └── strings.json │ │ │ │ ├── Spanish │ │ │ │ └── strings_es │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Turkish │ │ │ │ └── strings_tr │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ ├── Ukrainian │ │ │ │ └── strings_uk │ │ │ │ │ ├── strings │ │ │ │ │ └── strings.json │ │ │ │ └── Vietnamese │ │ │ │ └── strings_vi │ │ │ │ ├── strings │ │ │ │ └── strings.json │ │ ├── lottie_animations │ │ │ ├── haze_smoke_foreground.json │ │ │ ├── mostly_cloudy_background.json │ │ │ ├── mostly_cloudy_foreground.json │ │ │ ├── sunny_background.json │ │ │ ├── sunny_foreground.json │ │ │ └── thunder_foreground.json │ │ ├── map │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── leaflet.css │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── modules │ │ │ ├── GenerateClothingReco.js │ │ │ ├── Sortable.min.js │ │ │ ├── chart.js │ │ │ ├── lottie.js │ │ │ ├── pixel-components.js │ │ │ ├── ripple_acc.js │ │ │ ├── scroll.js │ │ │ ├── settingsModule.js │ │ │ ├── sun-tracker.js │ │ │ ├── units.js │ │ │ ├── weather-sources.js │ │ │ └── widgets.js │ │ ├── moon_phases │ │ │ ├── moon_first_quarter.svg │ │ │ ├── moon_full.svg │ │ │ ├── moon_last_quarter.svg │ │ │ ├── moon_new.svg │ │ │ ├── moon_waning_crescent.svg │ │ │ ├── moon_waning_gibbous.svg │ │ │ ├── moon_waxing_crescent.svg │ │ │ └── moon_waxing_gibbous.svg │ │ ├── pages │ │ │ ├── AboutPage.html │ │ │ ├── AppUnits.html │ │ │ ├── ArrangeItems.html │ │ │ ├── ClothingRecommendation.html │ │ │ ├── Homelocations.html │ │ │ ├── LanguagesPage.html │ │ │ ├── MoonPhases.html │ │ │ ├── aboutPages │ │ │ │ ├── PrivacyPolicy.html │ │ │ │ ├── TermsConditions.html │ │ │ │ └── licenses.html │ │ │ ├── alertPage.html │ │ │ ├── bundle.js │ │ │ ├── change_om_model.html │ │ │ ├── conditions_pages │ │ │ │ ├── airQuality_forecast.html │ │ │ │ ├── condition_pageUI.css │ │ │ │ ├── humidity_forecast.html │ │ │ │ ├── moon_forecast.html │ │ │ │ ├── pressure_forecast.html │ │ │ │ ├── sunset_rise_forecast.html │ │ │ │ ├── uvIndex_forecast.html │ │ │ │ ├── visibility_forecast.html │ │ │ │ └── wind_forecast.html │ │ │ ├── contributors.html │ │ │ ├── forecastPage.html │ │ │ ├── forecastPageUi.css │ │ │ ├── moonphaseUi.css │ │ │ ├── radar.html │ │ │ ├── searchPage.html │ │ │ └── settings.html │ │ ├── providers │ │ │ ├── accuweather.js │ │ │ ├── bomAustralia.js │ │ │ ├── cmaChina.js │ │ │ ├── dmiDenmark.js │ │ │ ├── dwdGermany.js │ │ │ ├── ecmwf.js │ │ │ ├── gemCanada.js │ │ │ ├── jmaJapan.js │ │ │ ├── knmiNetherlands.js │ │ │ ├── met-norway.js │ │ │ ├── meteo-france.js │ │ │ ├── noaaUS.js │ │ │ └── ukMetOffice.js │ │ ├── ripple-files │ │ │ ├── icon-ripple.js │ │ │ ├── ripple.css │ │ │ └── ripples.js │ │ ├── ui-files │ │ │ ├── font-usage.css │ │ │ ├── ui.css │ │ │ └── variables.css │ │ ├── uv-images │ │ │ ├── uv-0.png │ │ │ ├── uv-1.png │ │ │ ├── uv-10.png │ │ │ ├── uv-11.png │ │ │ ├── uv-12.png │ │ │ ├── uv-13.png │ │ │ ├── uv-2.png │ │ │ ├── uv-3.png │ │ │ ├── uv-4.png │ │ │ ├── uv-5.png │ │ │ ├── uv-6.png │ │ │ ├── uv-7.png │ │ │ ├── uv-8.png │ │ │ └── uv-9.png │ │ └── weather-icons │ │ │ ├── blizzard.svg │ │ │ ├── blowing_snow.svg │ │ │ ├── clear_day.svg │ │ │ ├── clear_night.svg │ │ │ ├── cloudy.svg │ │ │ ├── cloudy_with_rain.svg │ │ │ ├── cloudy_with_snow.svg │ │ │ ├── cloudy_with_sunny.svg │ │ │ ├── drizzle.svg │ │ │ ├── flurries.svg │ │ │ ├── haze_fog_dust_smoke.svg │ │ │ ├── heavy_rain.svg │ │ │ ├── heavy_snow.svg │ │ │ ├── icy.svg │ │ │ ├── isolated_scattered_thunderstorms_day.svg │ │ │ ├── isolated_scattered_thunderstorms_night.svg │ │ │ ├── isolated_thunderstorms.svg │ │ │ ├── mixed_rain_hail_sleet.svg │ │ │ ├── mixed_rain_snow.svg │ │ │ ├── mostly_clear_day.svg │ │ │ ├── mostly_clear_night.svg │ │ │ ├── mostly_cloudy_day.svg │ │ │ ├── mostly_cloudy_night.svg │ │ │ ├── not_available.svg │ │ │ ├── partly_cloudy_day.svg │ │ │ ├── partly_cloudy_night.svg │ │ │ ├── scattered_showers_day.svg │ │ │ ├── scattered_showers_night.svg │ │ │ ├── scattered_snow_showers_day.svg │ │ │ ├── scattered_snow_showers_night.svg │ │ │ ├── showers_rain.svg │ │ │ ├── showers_snow.svg │ │ │ ├── sleet_hail.svg │ │ │ ├── strong_thunderstorms.svg │ │ │ ├── sunny_and_cloudy.svg │ │ │ ├── sunny_with_cloudy.svg │ │ │ ├── sunny_with_rain.svg │ │ │ ├── sunny_with_snow.svg │ │ │ ├── tornado.svg │ │ │ ├── tropical_storm_hurricane.svg │ │ │ ├── very_cold.svg │ │ │ ├── very_hot.svg │ │ │ └── windy_breezy.svg │ ├── ic_clear_sky-playstore.png │ ├── ic_launcher-playstore.png │ ├── ic_launcher_mono-playstore.png │ ├── icon_mat_app-playstore.png │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── weathermaster │ │ │ ├── AboutPage.java │ │ │ ├── AirQualityConditions.java │ │ │ ├── AlertPage.java │ │ │ ├── AppUnitsActivity.java │ │ │ ├── ArrangeItems.java │ │ │ ├── ClothingRecommendation.java │ │ │ ├── ForecastPage.java │ │ │ ├── Homelocations.java │ │ │ ├── LanguagePage.java │ │ │ ├── LiveRadar.java │ │ │ ├── MainActivity.java │ │ │ ├── MoonPhases.java │ │ │ ├── PrivacyPolicy.java │ │ │ ├── SearchPage.java │ │ │ ├── SettingsActivity.java │ │ │ ├── Terms_Conditions.java │ │ │ ├── ThirdParty.java │ │ │ ├── UVIndexCondition.java │ │ │ ├── WeatherModels.java │ │ │ ├── WeatherWidgetProvider.java │ │ │ ├── WidgetProviderPill.java │ │ │ ├── WidgetProviderRound.java │ │ │ ├── WidgetProviderSquare.java │ │ │ ├── WidgetProviderSquareV2.java │ │ │ ├── WindCondition.java │ │ │ ├── contributorsPage.java │ │ │ ├── humidityCondition.java │ │ │ ├── pressureCondition.java │ │ │ ├── sunCondition.java │ │ │ └── visibilityCondition.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── baseline_cloud_queue_24.xml │ │ ├── blizzard.png │ │ ├── blowing_snow.png │ │ ├── clear_night.png │ │ ├── cloudy.png │ │ ├── drizzle.png │ │ ├── flurries.png │ │ ├── haze_fog_dust_smoke.png │ │ ├── heavy_rain.png │ │ ├── heavy_snow.png │ │ ├── ic_launcher_mono_foreground.xml │ │ ├── isolated_scattered_tstorms_day.png │ │ ├── isolated_scattered_tstorms_night.png │ │ ├── mostly_clear_night.png │ │ ├── mostly_cloudy_day.png │ │ ├── mostly_cloudy_night.png │ │ ├── mostly_sunny.png │ │ ├── partly_cloudy.png │ │ ├── partly_cloudy_night.png │ │ ├── scattered_showers_day.png │ │ ├── scattered_showers_night.png │ │ ├── showers_rain.png │ │ ├── sleet_hail.png │ │ ├── snackbar_background.xml │ │ ├── snow_showers_snow.png │ │ ├── strong_tstorms.png │ │ ├── sunny.png │ │ ├── tornado.png │ │ ├── widget_1_background_round.xml │ │ ├── widget_round_background_round.xml │ │ └── wintry_mix_rain_snow.png │ │ ├── font │ │ ├── outfit_medium.ttf │ │ └── product_sans.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── main_page.xml │ │ ├── no_internet.xml │ │ ├── overlay_layout.xml │ │ ├── widget_weather.xml │ │ ├── widget_weather_pill.xml │ │ ├── widget_weather_round.xml │ │ ├── widget_weather_square_v2.xml │ │ └── widgets_weather_square.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_mono.xml │ │ ├── ic_launcher_mono_round.xml │ │ ├── ic_launcher_round.xml │ │ ├── icon_mat_app.xml │ │ └── icon_mat_app_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_mono.webp │ │ ├── ic_launcher_mono_round.webp │ │ ├── ic_launcher_round.webp │ │ ├── icon_mat_app.webp │ │ ├── icon_mat_app_foreground.webp │ │ └── icon_mat_app_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_mono.webp │ │ ├── ic_launcher_mono_round.webp │ │ ├── ic_launcher_round.webp │ │ ├── icon_mat_app.webp │ │ ├── icon_mat_app_foreground.webp │ │ └── icon_mat_app_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_mono.webp │ │ ├── ic_launcher_mono_round.webp │ │ ├── ic_launcher_round.webp │ │ ├── icon_mat_app.webp │ │ ├── icon_mat_app_foreground.webp │ │ └── icon_mat_app_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_mono.webp │ │ ├── ic_launcher_mono_round.webp │ │ ├── ic_launcher_round.webp │ │ ├── icon_mat_app.webp │ │ ├── icon_mat_app_foreground.webp │ │ └── icon_mat_app_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_mono.webp │ │ ├── ic_launcher_mono_round.webp │ │ ├── ic_launcher_round.webp │ │ ├── icon_mat_app.webp │ │ ├── icon_mat_app_foreground.webp │ │ └── icon_mat_app_round.webp │ │ ├── values-night-v31 │ │ └── colors.xml │ │ ├── values-night │ │ ├── colors.xml │ │ └── themes.xml │ │ ├── values-v31 │ │ └── colors.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_mono_background.xml │ │ ├── icon_mat_app_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ ├── widget_info.xml │ │ ├── widget_info_pill.xml │ │ ├── widget_info_round.xml │ │ ├── widget_info_square.xml │ │ └── widget_info_square_v2.xml │ └── test │ └── java │ └── com │ └── example │ └── weathermaster │ └── ExampleUnitTest.java ├── build.gradle ├── crowdin.yml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_4.png │ │ ├── img_5.png │ │ ├── img_6.png │ │ ├── img_7.png │ │ ├── img_8.png │ │ └── img_9.png │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── preview ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── download_Btn.png ├── partly_cloudy_day.svg ├── readme_app_icon.svg └── thumbnail_mat.png ├── release └── output-metadata.json └── settings.gradle /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Report a bug 3 | labels: ["bug"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | Please fill out the sections below to help everyone identify and fix the bug 9 | - type: textarea 10 | id: description 11 | attributes: 12 | label: Describe your issue 13 | placeholder: When I click here this happens 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: steps 18 | attributes: 19 | label: Steps to reproduce 20 | placeholder: | 21 | 1. Go to page X 22 | 2. Click here 23 | 3. Click there 24 | validations: 25 | required: true 26 | - type: textarea 27 | id: expected 28 | attributes: 29 | label: What was the expected result? 30 | placeholder: I expected this to happen 31 | - type: input 32 | id: provider_used 33 | attributes: 34 | label: Which weather source are you using? 35 | placeholder: Provider name 36 | validations: 37 | required: true 38 | - type: textarea 39 | id: screenshots 40 | attributes: 41 | label: Put here any screenshots or videos (optional) 42 | - type: checkboxes 43 | id: acknowledgementsCheck 44 | attributes: 45 | label: Acknowledgements 46 | description: Your issue will be closed if you don’t read this carefully. 47 | options: 48 | - label: I have reviewed the existing issues to confirm that this is a unique report and not related to any currently open or closed tickets. 49 | required: true 50 | - label: I understand that this app is provided as-is, without any guarantees, and I might not receive a response to my request. Sometimes you might not get the response you want. 51 | required: true 52 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea to improve this project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Please provide detailed information to help us understand your idea and its potential impact. 8 | - type: textarea 9 | id: description 10 | attributes: 11 | label: Problem Statement 12 | placeholder: Describe the problem or limitation you're facing that the new feature would solve. 13 | description: Clearly explain the challenge or issue you're encountering to help us understand the context. 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: solution 18 | attributes: 19 | label: Proposed Solution 20 | placeholder: Explain how you think the feature should work and address the problem. 21 | description: Describe the solution in detail, including any specific behaviors or functionality it should have. 22 | validations: 23 | required: true 24 | - type: textarea 25 | id: alternatives 26 | attributes: 27 | label: Alternatives Considered 28 | placeholder: Describe any alternative solutions or features you've considered. 29 | description: If there are other ways to solve the issue, please share them here. 30 | - type: textarea 31 | id: additional 32 | attributes: 33 | label: Additional Context 34 | placeholder: Provide any extra details, links, or examples that might help clarify your request. 35 | description: This field is optional but highly encouraged if you have additional information. 36 | - type: checkboxes 37 | id: acknowledgementsCheck 38 | attributes: 39 | label: Acknowledgements 40 | description: Please confirm the following before submitting your feature request 41 | options: 42 | - label: I have searched the existing issues and discussions to ensure this feature has not already been requested. 43 | required: true 44 | - label: I understand that submitting a request does not guarantee it will be implemented. 45 | required: true 46 | - label: I have provided all necessary information to clearly explain my request. 47 | required: true 48 | - type: markdown 49 | attributes: 50 | value: | 51 | Thank you for suggesting an improvement! Your feedback is valuable, and we will review it as soon as possible. 52 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ui-ux-issue.yml: -------------------------------------------------------------------------------- 1 | name: UI/UX Issue 2 | description: UI/UX issues highlight problems related to the user interface or experience 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Please fill out the sections below 8 | - type: textarea 9 | id: description 10 | attributes: 11 | label: Describe your issue 12 | placeholder: A clear and concise description of the user interface or user experience problem 13 | validations: 14 | required: true 15 | - type: textarea 16 | id: steps 17 | attributes: 18 | label: Steps to reproduce 19 | placeholder: | 20 | 1. Go to '...' 21 | 2. Click on '...' 22 | 3. Observe the UI/UX issue. 23 | validations: 24 | required: true 25 | - type: textarea 26 | id: expected 27 | attributes: 28 | label: What was the expected result? 29 | placeholder: I expected this to happen 30 | - type: textarea 31 | id: screenshots 32 | attributes: 33 | label: Put here any screenshots or videos (optional) 34 | - type: markdown 35 | attributes: 36 | value: | 37 | Thanks for reporting this issue! We will get back to you as soon as possible. 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/Img_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/Img_2.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_1.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_3.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_4.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_5.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm_[Changes]/img_6.jpeg -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_13-07-2024_12_43_pm__Changes_.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- 1 | # The code is not clean 2 | ### Why is the package `com.example.weathermaster`? 3 | 4 | - Well, when I made this, I didn’t know a whole lot about Android development, and I didn’t realize you had to change the package name. So I made it with com.example, and now I can’t really change it because that would make it a whole new app. People who installed it from F-Droid may not get updates. I might change the package name if I publish the app on the Google Play Store. 5 | 6 | ### Why is it made with JS? 7 | 8 | - I was more familiar with it, and it works much smoother and is easier to maintain. Even without optimization, it still runs like butter. But I do have plans to convert it to Kotlin, though it's likely to happen. 🫠 9 | 10 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | } 4 | 5 | android { 6 | namespace 'com.example.weathermaster' 7 | compileSdk 34 8 | 9 | defaultConfig { 10 | applicationId "com.example.weathermaster" 11 | minSdk 22 12 | targetSdk 33 13 | versionCode 126 14 | versionName "1.20.1 (W)" 15 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 | } 17 | 18 | 19 | buildTypes { 20 | release { 21 | minifyEnabled false 22 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 23 | } 24 | } 25 | compileOptions { 26 | sourceCompatibility JavaVersion.VERSION_1_8 27 | targetCompatibility JavaVersion.VERSION_1_8 28 | } 29 | 30 | dependenciesInfo { 31 | includeInApk = false 32 | includeInBundle = false 33 | } 34 | } 35 | 36 | 37 | 38 | dependencies { 39 | implementation 'androidx.appcompat:appcompat:1.7.0' 40 | implementation 'com.google.android.material:material:1.12.0' 41 | implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 42 | implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' 43 | testImplementation 'junit:junit:4.13.2' 44 | androidTestImplementation 'androidx.test.ext:junit:1.2.1' 45 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' 46 | } -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "artifactType": { 4 | "type": "APK", 5 | "kind": "Directory" 6 | }, 7 | "applicationId": "com.example.weathermaster", 8 | "variantName": "release", 9 | "elements": [ 10 | { 11 | "type": "SINGLE", 12 | "filters": [], 13 | "attributes": [], 14 | "versionCode": 126, 15 | "versionName": "1.20.1 (W)", 16 | "outputFile": "app-release.apk" 17 | } 18 | ], 19 | "elementType": "File" 20 | } -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/weathermaster/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.example.weathermaster; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | assertEquals("com.example.weathermaster", appContext.getPackageName()); 25 | } 26 | } -------------------------------------------------------------------------------- /app/src/main/assets/FullMoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/FullMoon.png -------------------------------------------------------------------------------- /app/src/main/assets/app/apiKeysRotation.js: -------------------------------------------------------------------------------- 1 | // No need -------------------------------------------------------------------------------- /app/src/main/assets/app/apply.js: -------------------------------------------------------------------------------- 1 | const themeStyle = localStorage.getItem('weatherTHEME') 2 | 3 | document.documentElement.setAttribute('iconCodeTheme', themeStyle); 4 | -------------------------------------------------------------------------------- /app/src/main/assets/app/auto-update.js: -------------------------------------------------------------------------------- 1 | function updateOldData(latSend, longSend, CurrentLocationName){ 2 | 3 | 4 | let weatherDataKey; 5 | if ( 6 | localStorage.getItem("selectedMainWeatherProvider") === "Met norway" 7 | ) { 8 | weatherDataKey = `WeatherDataMetNorwayTimeStamp_${CurrentLocationName}`; 9 | } else if ( 10 | localStorage.getItem("ApiForAccu") && 11 | localStorage.getItem("selectedMainWeatherProvider") === "Accuweather" 12 | ) { 13 | weatherDataKey = `WeatherDataAccuCurrentTimeStamp_${CurrentLocationName}`; 14 | } else if ( 15 | localStorage.getItem("selectedMainWeatherProvider") === "meteoFrance" 16 | ) { 17 | weatherDataKey = `WeatherDataMeteoFranceTimeStamp_${CurrentLocationName}`; 18 | } else if ( 19 | localStorage.getItem("selectedMainWeatherProvider") === "dwdGermany" 20 | ) { 21 | weatherDataKey = `WeatherDataDWDGermanyTimeStamp_${CurrentLocationName}`; 22 | } else if ( 23 | localStorage.getItem("selectedMainWeatherProvider") === "noaaUS" 24 | ) { 25 | weatherDataKey = `WeatherDataNOAAUSTimeStamp_${CurrentLocationName}`; 26 | } else if ( 27 | localStorage.getItem("selectedMainWeatherProvider") === "ecmwf" 28 | ) { 29 | weatherDataKey = `WeatherDataECMWFTimeStamp_${CurrentLocationName}`; 30 | } else if ( 31 | localStorage.getItem("selectedMainWeatherProvider") === "ukMetOffice" 32 | ) { 33 | weatherDataKey = `WeatherDataukMetOfficeTimeStamp_${CurrentLocationName}`; 34 | } else if ( 35 | localStorage.getItem("selectedMainWeatherProvider") === "jmaJapan" 36 | ) { 37 | weatherDataKey = `WeatherDataJMAJapanTimeStamp_${CurrentLocationName}`; 38 | } else if ( 39 | localStorage.getItem("selectedMainWeatherProvider") === "gemCanada" 40 | ) { 41 | weatherDataKey = `WeatherDatagemCanadaTimeStamp_${CurrentLocationName}`; 42 | } else if ( 43 | localStorage.getItem("selectedMainWeatherProvider") === "bomAustralia" 44 | ) { 45 | weatherDataKey = `WeatherDatabomAustraliaTimeStamp_${CurrentLocationName}`; 46 | } else if ( 47 | localStorage.getItem("selectedMainWeatherProvider") === "cmaChina" 48 | ) { 49 | weatherDataKey = `WeatherDatacmaChinaTimeStamp_${CurrentLocationName}`; 50 | } else if ( 51 | localStorage.getItem("selectedMainWeatherProvider") === 52 | "knmiNetherlands" 53 | ) { 54 | weatherDataKey = `WeatherDataknmiNetherlandsTimeStamp_${CurrentLocationName}`; 55 | } else if ( 56 | localStorage.getItem("selectedMainWeatherProvider") === "dmiDenmark" 57 | ) { 58 | weatherDataKey = `WeatherDatadmiDenmarkTimeStamp_${CurrentLocationName}`; 59 | } else { 60 | weatherDataKey = `WeatherDataOpenMeteoTimeStamp_${CurrentLocationName}`; 61 | } 62 | 63 | const weatherData = localStorage.getItem(weatherDataKey); 64 | 65 | 66 | const providedDate = new Date(weatherData); 67 | 68 | const currentDate = new Date(); 69 | 70 | const timeDifference = currentDate - providedDate; 71 | 72 | const timeDifferenceInMinutes = timeDifference / (1000 * 60); 73 | 74 | 75 | if (timeDifferenceInMinutes > 72) { 76 | document.querySelector('auto-update').hidden = false; 77 | DecodeWeather( 78 | latSend, 79 | longSend, 80 | CurrentLocationName, 81 | `Refreshed_${CurrentLocationName}` 82 | ); 83 | } 84 | 85 | 86 | 87 | } -------------------------------------------------------------------------------- /app/src/main/assets/app/day_summary.js: -------------------------------------------------------------------------------- 1 | let combinedData = { 2 | hourlyData: null, 3 | dailyData: null 4 | }; 5 | 6 | function ReportFromhourly(data) { 7 | combinedData.hourlyData = data; 8 | 9 | GenerateSummary(combinedData); 10 | } 11 | 12 | function ReportFromdaily(data) { 13 | combinedData.dailyData = data; 14 | 15 | GenerateSummary(combinedData); 16 | } 17 | 18 | 19 | function GenerateSummary(data) { 20 | let hourlyWeather = getWeatherLabelInLangNoAnimText(data.hourlyData, 1, 'en'); 21 | let dailyWeather = getWeatherLabelInLangNoAnim(data.dailyData, 1, 'en'); 22 | 23 | console.log(hourlyWeather, dailyWeather); 24 | 25 | let weatherComment = ''; 26 | 27 | function describeWeather(condition) { 28 | let descriptions 29 | 30 | if(localStorage.getItem('UseFrogSummary') === 'true'){ 31 | descriptions = { 32 | 33 | ${loaddescriptions} 34 | 35 | } 36 | 37 | 38 | } else{ 39 | descriptions = { 40 | ${loaddescriptions} 41 | }; 42 | } 43 | let randomDescriptions = descriptions[condition] || ["unpredictable weather"]; 44 | return randomDescriptions[Math.floor(Math.random() * randomDescriptions.length)]; 45 | } 46 | 47 | let hourlyDescription = describeWeather(hourlyWeather); 48 | let dailyDescription = describeWeather(dailyWeather); 49 | 50 | let weatherPhrases 51 | 52 | if(localStorage.getItem('UseFrogSummary') === 'true'){ 53 | weatherPhrases = [ 54 | ${loadPhrases} 55 | ] 56 | } else{ 57 | weatherPhrases = [ 58 | ${loadPhrases} 59 | ]; 60 | } 61 | weatherComment = weatherPhrases[Math.floor(Math.random() * weatherPhrases.length)]; 62 | 63 | document.getElementById('weatherComments').innerHTML = ` 64 | ${weatherComment} 65 | `; 66 | } 67 | 68 | -------------------------------------------------------------------------------- /app/src/main/assets/app/navigate.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | window.transitionToPage = function(href) { 6 | 7 | document.querySelector('body').style.opacity = '0'; 8 | 9 | setTimeout(function() { 10 | window.location.href = href 11 | }, 500); 12 | 13 | 14 | } 15 | 16 | 17 | 18 | 19 | 20 | 21 | document.addEventListener('DOMContentLoaded', function(event) { 22 | setTimeout(function() { 23 | 24 | document.querySelector('body').style.opacity = '1'; 25 | document.querySelector('body').style.pointerEvents = 'auto'; 26 | 27 | }, 100); 28 | 29 | }); 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/assets/bridge/android.js: -------------------------------------------------------------------------------- 1 | function sendThemeToAndroid(status, nav, flag, flagAnimAndroid) { 2 | AndroidInterface.updateStatusBarColor(status, nav, flag, flagAnimAndroid); 3 | }; 4 | 5 | 6 | let Themeflag = '1' 7 | 8 | function checkThemeFlag(){ 9 | if(localStorage.getItem('useLightTheme') && localStorage.getItem('useLightTheme') === 'true'){ 10 | Themeflag = '1' 11 | } else{ 12 | Themeflag = '0' 13 | } 14 | } 15 | 16 | checkThemeFlag() 17 | 18 | // ----------------- 19 | 20 | function navigateActivity(name) { 21 | OpenActivityInterface.OpenActivity(name); 22 | }; 23 | 24 | // ---------- 25 | 26 | function ActivityBack(){ 27 | BackActivityInterface.CloseActivity(); 28 | } 29 | 30 | // dialog colors 31 | 32 | 33 | const colorsDialogsOpenSurface = { 34 | clear_night_pageDialog : "", 35 | clear_night_pageDialog_dark : "#010209", 36 | clear_day_pageDialog : "", 37 | clear_day_pageDialog_dark : "#00060a", 38 | overcast_pageDialog: "", 39 | overcast_pageDialog_dark: "#070708", 40 | cloudy_pageDialog: "", 41 | cloudy_pageDialog_dark: "#05060a", 42 | rain_pageDialog: "", 43 | rain_pageDialog_dark: "#07080a", 44 | thunder_pageDialog: "", 45 | thunder_pageDialog_dark: "#08010a", 46 | fog_pageDialog: "", 47 | fog_pageDialog_dark: "#0a0501", 48 | snow_pageDialog: "", 49 | snow_pageDialog_dark: "#000505" 50 | } 51 | 52 | const colorsDialogsOpenContainer = { 53 | clear_night_pageDialog : "", 54 | clear_night_pageDialog_dark : "#080911", 55 | clear_day_pageDialog : "", 56 | clear_day_pageDialog_dark : "#00080e", 57 | overcast_pageDialog: "", 58 | overcast_pageDialog_dark: "#0a0a0a", 59 | cloudy_pageDialog: "", 60 | cloudy_pageDialog_dark: "#070a0d", 61 | rain_pageDialog: "", 62 | rain_pageDialog_dark: "#0a0a0c", 63 | thunder_pageDialog: "", 64 | thunder_pageDialog_dark: "#0c080c", 65 | fog_pageDialog: "", 66 | fog_pageDialog_dark: "#0c0805", 67 | snow_pageDialog: "", 68 | snow_pageDialog_dark: "#080808" 69 | } 70 | 71 | 72 | 73 | // get colors 74 | 75 | function GetDialogOverlayContainerColor() { 76 | const theme = document.documentElement.getAttribute('Theme'); 77 | if (!theme) return null; 78 | 79 | if (localStorage.getItem('useLightTheme') === 'true') { 80 | return theme + 'Dialog'; 81 | } else { 82 | return theme + 'Dialog_dark'; 83 | } 84 | } 85 | 86 | 87 | -------------------------------------------------------------------------------- /app/src/main/assets/bridge/androidNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/bridge/androidNav.js -------------------------------------------------------------------------------- /app/src/main/assets/components-script.js/bottom-nav.js: -------------------------------------------------------------------------------- 1 | // tabs-nav 2 | let currentTab = 0; 3 | showTab(currentTab); 4 | function showTab(tabIndex) { 5 | document.getElementById(`tab-content-${currentTab}`).style.display = 'none'; 6 | 7 | const previousTab = document.querySelector('.tab.active'); 8 | const previousname = document.querySelector('.label.active-name'); 9 | 10 | if (previousTab) { 11 | previousTab.classList.remove('active'); 12 | previousname.classList.remove('active-name'); 13 | 14 | } 15 | 16 | document.getElementById(`tab-content-${tabIndex}`).style.display = 'block'; 17 | 18 | document.querySelectorAll('.tab')[tabIndex].classList.add('active'); 19 | document.querySelectorAll('.label')[tabIndex].classList.add('active-name'); 20 | currentTab = tabIndex; 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/MaterialSymbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/fonts/MaterialSymbols.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Product-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/fonts/Product-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Product-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/fonts/Product-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/froggie/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/01d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/01n.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/02d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/02n.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/03d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/04d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/09d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/10d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/11d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/13d.png -------------------------------------------------------------------------------- /app/src/main/assets/froggie/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/froggie/50d.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/error.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/leaf.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/moon_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/moon_texture.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/prevmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/prevmap.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/sun.png -------------------------------------------------------------------------------- /app/src/main/assets/icons/very_hot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/icons/wind_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/icons/wind_direction.png -------------------------------------------------------------------------------- /app/src/main/assets/index.js: -------------------------------------------------------------------------------- 1 | import '@material/web/all.js' -------------------------------------------------------------------------------- /app/src/main/assets/map/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/map/images/layers-2x.png -------------------------------------------------------------------------------- /app/src/main/assets/map/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/map/images/layers.png -------------------------------------------------------------------------------- /app/src/main/assets/map/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/map/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/src/main/assets/map/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/map/images/marker-icon.png -------------------------------------------------------------------------------- /app/src/main/assets/map/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/map/images/marker-shadow.png -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_first_quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_last_quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_new.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_waning_crescent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_waning_gibbous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_waxing_crescent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/moon_phases/moon_waxing_gibbous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/providers/bomAustralia.js: -------------------------------------------------------------------------------- 1 | // fetch using BOM Australia 2 | 3 | 4 | function FetchbomAustralia(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=bom_access_global&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDatabomAustralia_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/cmaChina.js: -------------------------------------------------------------------------------- 1 | // fetch using CMA China 2 | 3 | 4 | function FetchcmaChina(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=cma_grapes_global&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDatacmaChina_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/dmiDenmark.js: -------------------------------------------------------------------------------- 1 | // fetch using DMI Denmark 2 | 3 | 4 | function FetchdmiDenmark(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=dmi_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDatadmiDenmark_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/dwdGermany.js: -------------------------------------------------------------------------------- 1 | // fetch using dwdGermany 2 | 3 | 4 | function FetchDWDGermany(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=icon_seamless&forecast_days=7&forecast_hours=24`) 7 | .then(response => response.json()) 8 | .then(data => { 9 | 10 | localStorage.setItem(`WeatherDataDWDGermany_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 11 | 12 | renderLatestData(lat, lon, suggestionText, refreshValue) 13 | }) 14 | .catch(error => { 15 | console.error('There was an error fetching the weather data:', error); 16 | ShowSnackMessage.ShowSnack( 17 | getTranslationByLang( 18 | localStorage.getItem("AppLanguageCode"), 19 | "data_fetch_error" 20 | ), 21 | "long" 22 | ); 23 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 24 | document.querySelector('.no_touch_screen').hidden = true; 25 | return 26 | }); 27 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/ecmwf.js: -------------------------------------------------------------------------------- 1 | // fetch using ECMWF 2 | 3 | 4 | function FetchECMWF(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=ecmwf_ifs025&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataECMWF_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/gemCanada.js: -------------------------------------------------------------------------------- 1 | // fetch using GEM Canada 2 | 3 | 4 | function FetchgemCanada(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=gem_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDatagemCanada_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | 14 | renderLatestData(lat, lon, suggestionText, refreshValue) 15 | }) 16 | .catch(error => { 17 | console.error('There was an error fetching the weather data:', error); 18 | ShowSnackMessage.ShowSnack( 19 | getTranslationByLang( 20 | localStorage.getItem("AppLanguageCode"), 21 | "data_fetch_error" 22 | ), 23 | "long" 24 | ); 25 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 26 | document.querySelector('.no_touch_screen').hidden = true; 27 | return 28 | }); 29 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/jmaJapan.js: -------------------------------------------------------------------------------- 1 | // fetch using JMA Japan 2 | 3 | 4 | function FetchJMAJapan(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=jma_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataJMAJapan_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | 14 | renderLatestData(lat, lon, suggestionText, refreshValue) 15 | }) 16 | .catch(error => { 17 | console.error('There was an error fetching the weather data:', error); 18 | ShowSnackMessage.ShowSnack( 19 | getTranslationByLang( 20 | localStorage.getItem("AppLanguageCode"), 21 | "data_fetch_error" 22 | ), 23 | "long" 24 | ); 25 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 26 | document.querySelector('.no_touch_screen').hidden = true; 27 | return 28 | }); 29 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/knmiNetherlands.js: -------------------------------------------------------------------------------- 1 | // fetch using KNMI Netherlands 2 | 3 | 4 | function FetchknmiNetherlands(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=knmi_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataknmiNetherlands_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/meteo-france.js: -------------------------------------------------------------------------------- 1 | // fetch using meteo france 2 | 3 | 4 | function FetchMeteoFrance(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=meteofrance_seamless&forecast_days=4&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataMeteoFrance_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | 14 | renderLatestData(lat, lon, suggestionText, refreshValue) 15 | }) 16 | .catch(error => { 17 | console.error('There was an error fetching the weather data:', error); 18 | ShowSnackMessage.ShowSnack( 19 | getTranslationByLang( 20 | localStorage.getItem("AppLanguageCode"), 21 | "data_fetch_error" 22 | ), 23 | "long" 24 | ); 25 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 26 | document.querySelector('.no_touch_screen').hidden = true; 27 | return 28 | }); 29 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/noaaUS.js: -------------------------------------------------------------------------------- 1 | // fetch using NOAA U.S. 2 | 3 | 4 | function FetchNOAAUS(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=gfs_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataNOAAUS_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | 14 | renderLatestData(lat, lon, suggestionText, refreshValue) 15 | }) 16 | .catch(error => { 17 | console.error('There was an error fetching the weather data:', error); 18 | ShowSnackMessage.ShowSnack( 19 | getTranslationByLang( 20 | localStorage.getItem("AppLanguageCode"), 21 | "data_fetch_error" 22 | ), 23 | "long" 24 | ); 25 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 26 | document.querySelector('.no_touch_screen').hidden = true; 27 | return 28 | }); 29 | } -------------------------------------------------------------------------------- /app/src/main/assets/providers/ukMetOffice.js: -------------------------------------------------------------------------------- 1 | // fetch using ukMetOffice 2 | 3 | 4 | function FetchukMetOffice(lat, lon, timezone, suggestionText, refreshValue) { 5 | 6 | 7 | fetch(`https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}¤t=temperature_2m,is_day,apparent_temperature,pressure_msl,relative_humidity_2m,precipitation,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m,wind_gusts_10m&hourly=wind_speed_10m,wind_direction_10m,relative_humidity_2m,pressure_msl,cloud_cover,temperature_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,visibility,uv_index&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,uv_index_max,precipitation_sum,daylight_duration,precipitation_probability_max,precipitation_hours,wind_speed_10m_max,wind_gusts_10m_max&timezone=${timezone}&models=ukmo_seamless&forecast_days=7&forecast_hours=24`) 8 | .then(response => response.json()) 9 | .then(data => { 10 | 11 | localStorage.setItem(`WeatherDataukMetOffice_${suggestionText}`, JSON.stringify(data, new Date().toISOString())) 12 | 13 | renderLatestData(lat, lon, suggestionText, refreshValue) 14 | }) 15 | .catch(error => { 16 | console.error('There was an error fetching the weather data:', error); 17 | ShowSnackMessage.ShowSnack( 18 | getTranslationByLang( 19 | localStorage.getItem("AppLanguageCode"), 20 | "data_fetch_error" 21 | ), 22 | "long" 23 | ); 24 | AndroidInterface.updateStatusBarColor('StopRefreshingLoader'); 25 | document.querySelector('.no_touch_screen').hidden = true; 26 | return 27 | }); 28 | } -------------------------------------------------------------------------------- /app/src/main/assets/ripple-files/icon-ripple.js: -------------------------------------------------------------------------------- 1 | function playEffect(button) { 2 | button.classList.add('touched'); 3 | 4 | button.classList.remove('touchedfade'); 5 | 6 | } 7 | function playEffect2(button) { 8 | 9 | 10 | 11 | setTimeout(()=>{ 12 | button.classList.add('touchedfade'); 13 | }, 200); 14 | 15 | setTimeout(()=>{ 16 | button.classList.remove('touched'); 17 | button.classList.remove('touchedfade'); 18 | }, 300); 19 | } 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/assets/ui-files/font-usage.css: -------------------------------------------------------------------------------- 1 | 2 | @font-face { 3 | font-family: 'Google'; 4 | src: url('../fonts/Product-Regular.ttf') format('truetype'); 5 | 6 | } 7 | 8 | @font-face { 9 | font-family: 'Outfit'; 10 | src: url('../fonts/Product-Regular.ttf') format('truetype'); 11 | 12 | } 13 | 14 | @font-face { 15 | font-family: 'Outfit-mid'; 16 | src: url('../fonts/Product-Medium.ttf') format('truetype'); 17 | 18 | } 19 | 20 | 21 | @font-face { 22 | font-family: 'Google-medium'; 23 | src: url('../fonts/Product-Medium.ttf') format('truetype'); 24 | 25 | } 26 | 27 | /* ---------- */ 28 | @font-face { 29 | font-family: 'Roboto'; 30 | src: url('../fonts/Roboto-Regular.ttf') format('truetype'); 31 | 32 | } 33 | 34 | 35 | @font-face { 36 | font-family: 'Roboto'; 37 | src: url('../fonts/Roboto-Regular.ttf') format('truetype'); 38 | 39 | } 40 | 41 | @font-face { 42 | font-family: 'Roboto-medium'; 43 | src: url('../fonts/Roboto-Medium.ttf') format('truetype'); 44 | 45 | } 46 | 47 | 48 | @font-face { 49 | font-family: 'Roboto-medium'; 50 | src: url('../fonts/Roboto-Medium.ttf') format('truetype'); 51 | 52 | } 53 | 54 | 55 | @font-face { 56 | font-family: 'Material symbols'; 57 | src: url('../fonts/MaterialSymbols.ttf') format('truetype'); 58 | } 59 | 60 | 61 | 62 | [icon-outlined] { 63 | font-family: 'Material symbols'; 64 | font-weight: normal !important; 65 | font-style: normal !important; 66 | line-height: 1; 67 | 68 | } 69 | 70 | [icon-filled] { 71 | font-family: 'Material symbols'; 72 | font-weight: normal !important; 73 | font-style: normal !important; 74 | font-variation-settings: 'FILL' 1; 75 | line-height: 1; 76 | 77 | } 78 | 79 | [icon-weight="200"]{ 80 | font-weight: 200 !important; 81 | } 82 | 83 | 84 | [icon-weight="100"]{ 85 | font-weight: 100 !important; 86 | } -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-0.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-1.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-10.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-11.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-12.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-13.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-2.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-3.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-4.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-5.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-6.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-7.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-8.png -------------------------------------------------------------------------------- /app/src/main/assets/uv-images/uv-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/assets/uv-images/uv-9.png -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/blizzard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/blowing_snow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/clear_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/clear_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/cloudy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/cloudy_with_rain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/cloudy_with_snow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/cloudy_with_sunny.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/drizzle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/haze_fog_dust_smoke.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/heavy_rain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/icy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/isolated_scattered_thunderstorms_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/isolated_scattered_thunderstorms_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/isolated_thunderstorms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mixed_rain_hail_sleet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mixed_rain_snow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mostly_clear_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mostly_clear_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mostly_cloudy_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/mostly_cloudy_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/not_available.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/partly_cloudy_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/partly_cloudy_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/scattered_showers_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/scattered_showers_night.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/showers_rain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/sleet_hail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/strong_thunderstorms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/sunny_and_cloudy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/sunny_with_cloudy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/sunny_with_rain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/sunny_with_snow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/tornado.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/tropical_storm_hurricane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/very_cold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/very_hot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/assets/weather-icons/windy_breezy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/ic_clear_sky-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/ic_clear_sky-playstore.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher_mono-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/ic_launcher_mono-playstore.png -------------------------------------------------------------------------------- /app/src/main/icon_mat_app-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/icon_mat_app-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 13 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 29 | 30 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_cloud_queue_24.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/blizzard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/blizzard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/blowing_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/blowing_snow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/clear_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/clear_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/cloudy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/drizzle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/flurries.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/haze_fog_dust_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/haze_fog_dust_smoke.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/heavy_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/heavy_rain.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/heavy_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/heavy_snow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_mono_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 13 | 16 | 19 | 22 | 25 | 28 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/isolated_scattered_tstorms_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/isolated_scattered_tstorms_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/isolated_scattered_tstorms_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/isolated_scattered_tstorms_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mostly_clear_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/mostly_clear_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mostly_cloudy_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/mostly_cloudy_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mostly_cloudy_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/mostly_cloudy_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mostly_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/mostly_sunny.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/partly_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/partly_cloudy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/partly_cloudy_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/partly_cloudy_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scattered_showers_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/scattered_showers_day.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scattered_showers_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/scattered_showers_night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/showers_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/showers_rain.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sleet_hail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/sleet_hail.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/snackbar_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/snow_showers_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/snow_showers_snow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/strong_tstorms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/strong_tstorms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/sunny.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tornado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/tornado.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_1_background_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_round_background_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wintry_mix_rain_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/drawable/wintry_mix_rain_snow.png -------------------------------------------------------------------------------- /app/src/main/res/font/outfit_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/font/outfit_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/product_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/font/product_sans.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 19 | 20 | 21 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/main_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/layout/no_internet.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 19 | 20 | 30 | 31 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /app/src/main/res/layout/overlay_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_weather.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 27 | 28 | 29 | 34 | 40 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_weather_pill.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 19 | 20 | 25 | 26 | 27 | 40 | 41 | 42 | 43 | 44 | 52 | 53 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_weather_round.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 16 | 22 | 23 | 24 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widgets_weather_square.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 15 | 16 | 25 | 26 | 27 | 28 | 29 | 30 | 41 | 42 | 57 | 58 | 59 | 60 | 61 | 66 | 76 | 77 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_mono.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_mono_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/icon_mat_app.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/icon_mat_app_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_mono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/ic_launcher_mono.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_mono_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/ic_launcher_mono_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_mat_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/icon_mat_app.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_mat_app_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/icon_mat_app_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_mat_app_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-hdpi/icon_mat_app_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_mono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/ic_launcher_mono.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_mono_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/ic_launcher_mono_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_mat_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/icon_mat_app.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_mat_app_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/icon_mat_app_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_mat_app_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-mdpi/icon_mat_app_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_mono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/ic_launcher_mono.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_mono_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/ic_launcher_mono_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_mat_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/icon_mat_app.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_mat_app_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/icon_mat_app_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_mat_app_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xhdpi/icon_mat_app_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_mono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/ic_launcher_mono.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_mono_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/ic_launcher_mono_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_mat_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/icon_mat_app.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_mat_app_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/icon_mat_app_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_mat_app_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxhdpi/icon_mat_app_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_mono.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mono.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_mono_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mono_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_mat_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/icon_mat_app.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_mat_app_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/icon_mat_app_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_mat_app_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/app/src/main/res/mipmap-xxxhdpi/icon_mat_app_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night-v31/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @android:color/system_accent1_100 5 | @android:color/system_accent1_900 6 | @android:color/system_accent1_700 7 | @android:color/system_accent1_100 8 | 9 | 10 | @android:color/system_accent2_300 11 | @android:color/system_accent2_900 12 | @android:color/system_accent2_700 13 | @android:color/system_accent2_100 14 | 15 | 16 | @android:color/system_accent3_300 17 | @android:color/system_accent3_900 18 | @android:color/system_accent3_700 19 | @android:color/system_accent3_100 20 | 21 | 22 | @android:color/system_neutral1_900 23 | @android:color/system_neutral1_100 24 | @android:color/system_neutral1_700 25 | @android:color/system_neutral1_100 26 | 27 | 28 | @android:color/system_accent2_800 29 | @color/black 30 | @color/material_dynamic_neutral40 31 | 32 | 33 | @android:color/system_neutral2_700 34 | @android:color/system_neutral2_100 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | #e3e2e8 7 | #2f3035 8 | 9 | 10 | #001d33 11 | #001d33 12 | #04122e 13 | #001d33 14 | #0c1822 15 | #0e1d2a 16 | #0e1d2a 17 | #0e1d2a 18 | #0b0b0c 19 | #0e1d2a 20 | #0e1d2a 21 | #0e1d2a 22 | #0e1d2a 23 | #0e1d2a 24 | #1f1f30 25 | #1f1f30 26 | #191209 27 | #191209 28 | 29 | 30 | #121317 31 | #2b226f 32 | #334151 33 | #1a110f 34 | #101510 35 | #191113 36 | #0c1822 37 | #111318 38 | 39 | 40 | 41 | #aac7ff 42 | #0a305f 43 | #284777 44 | #d6e3ff 45 | 46 | #bec6dc 47 | #283141 48 | #3e4759 49 | #dae2f9 50 | 51 | #ddbce0 52 | #3f2844 53 | #573e5c 54 | #fad8fd 55 | 56 | #111318 57 | #e2e2e9 58 | #111318 59 | #e2e2e9 60 | 61 | #1d2024 62 | 63 | #111318 64 | #c4c6d0 65 | 66 | #ffb4ab 67 | #690005 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 33 | 34 | 35 | 36 | 44 | 45 | -------------------------------------------------------------------------------- /app/src/main/res/values-v31/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @android:color/system_accent1_600 5 | @android:color/system_accent1_0 6 | @android:color/system_accent1_100 7 | @android:color/system_accent1_900 8 | 9 | 10 | @android:color/system_accent2_600 11 | @android:color/system_accent2_0 12 | @android:color/system_accent2_100 13 | @android:color/system_accent2_900 14 | 15 | 16 | @android:color/system_accent3_600 17 | @android:color/system_accent3_0 18 | @android:color/system_accent3_100 19 | @android:color/system_accent3_900 20 | 21 | 22 | @android:color/system_neutral1_100 23 | @android:color/system_neutral1_900 24 | @android:color/system_neutral1_500 25 | @android:color/system_neutral1_100 26 | 27 | 28 | @android:color/system_accent2_50 29 | @color/white 30 | @color/material_dynamic_neutral90 31 | 32 | 33 | @android:color/system_neutral2_500 34 | @android:color/system_neutral1_500 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | #e2e2e9 7 | #2e3036 8 | 9 | 10 | #001d33 11 | #001d33 12 | #04122e 13 | #001d33 14 | #0c1822 15 | #0e1d2a 16 | #0e1d2a 17 | #0e1d2a 18 | #0b0b0c 19 | #0e1d2a 20 | #0e1d2a 21 | #0e1d2a 22 | #0e1d2a 23 | #0e1d2a 24 | #1f1f30 25 | #1f1f30 26 | #191209 27 | #191209 28 | 29 | 30 | #121317 31 | #2b226f 32 | #334151 33 | #1a110f 34 | #101510 35 | #191113 36 | #0c1822 37 | #111318 38 | 39 | 40 | #415f91 41 | #ffffff 42 | #d6e3ff 43 | #001b3e 44 | 45 | #565f71 46 | #ffffff 47 | #dae2f9 48 | #131c2b 49 | 50 | #705575 51 | #ffffff 52 | #fad8fd 53 | #28132e 54 | 55 | #f9f9ff 56 | #191c20 57 | #f9f9ff 58 | #191c20 59 | 60 | #ededf4 61 | 62 | #d9d9e0 63 | #44474e 64 | 65 | #ba1a1a 66 | #ffffff 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_mono_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/icon_mat_app_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Weather Master 3 | Current and Hourly 4 | -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info_pill.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info_round.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info_square.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info_square_v2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/test/java/com/example/weathermaster/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.weathermaster; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '8.1.2' apply false 4 | } -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /app/src/main/assets/langs/languages.json 3 | translation: /app/src/main/assets/langs/translations/%language%/strings_%two_letters_code%/strings.json 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 |

WeatherMaster inspired by the Google Pixel weather app, but with more features

2 |


Features:

3 |
    4 | 5 |
  • 🌍 Offline Mode: Access previously loaded weather data even without an internet connection.
  • 6 |
  • 🌤️ Current Weather: Get real-time updates on weather conditions in your area.
  • 7 |
  • 📢 Government Weather Alerts: Receive official alerts and warnings to stay safe.
  • 8 |
  • ⏳ 24-Hour Forecast: Plan your short-term activities with accurate forecasts for the next two days.
  • 9 |
  • 📅 14-Day Forecast: View detailed weather predictions for the upcoming week.
  • 10 |
  • 🌙 Moon Phases: Track the phases of the moon and plan accordingly.
  • 11 |
  • 🌑 Moonrise & Moonset: Know the exact times for moonrise and moonset each day.
  • 12 |
  • 🌅 Sunrise & Sunset: Stay informed about sunrise and sunset times to optimize your day.
  • 13 |
  • 📏 Day Length: Check how long the daylight lasts each day.
  • 14 |
  • 📝 Day Description: Get a brief summary of the day’s weather conditions.
  • 15 |
  • 🌧️ Rain Bar: See a visual representation of expected rainfall.
  • 16 |
  • 👁️ Visibility: Monitor how far you can see clearly based on weather conditions.
  • 17 |
  • 💧 Humidity: Check the current humidity levels to stay comfortable.
  • 18 |
  • 🧭 Pressure: Track atmospheric pressure to understand weather changes.
  • 19 |
  • 🌬️ Wind Direction & Speed: Stay aware of wind patterns and strength.
  • 20 |
  • ❄️ Snow Amount: Know the expected snowfall for winter planning.
  • 21 |
  • ☁️ Cloudiness: See how much of the sky is covered by clouds.
  • 22 |
  • 🌡️ Min-Max Temperature: View the range of temperatures for the day.
  • 23 |
  • 🌬️ Feels Like Temperature: Understand how the temperature feels based on wind and humidity.
  • 24 |
  • 🌧️ Precipitation Type & Area Coverage: Get details on what kind of precipitation is expected and its 25 | coverage area.
  • 26 |
  • 🌞 UV Index: Stay protected from harmful UV rays with UV index updates.
  • 27 |
  • 🌿 Air Quality: Monitor air quality to stay informed about pollution levels.
  • 28 |
  • 🗺️ Live Map: Access a real-time map to track weather conditions in different areas.
  • 29 |
  • 📍 Location Picker: Easily select and view weather information for different locations.
  • 30 |
  • ⭐ Save Favorite Locations: Save your preferred locations for quick access to their weather updates.
  • 31 |
  • 👗 Clothing Recommendations: Get suggestions on what to wear based on the current weather conditions. 32 |
  • 33 |
  • 🌾 Pollen Data (Europe Only) View pollen levels for grass, trees, and weeds in your area.
  • 34 |
-------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_8.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/fastlane/metadata/android/en-US/images/phoneScreenshots/img_9.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Weather, Forecasts, Moon Phases, and More -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Enables namespacing of each library's R class so that its R class includes only the 19 | # resources declared in the library itself and none from the library's dependencies, 20 | # thereby reducing the size of the R class for that library 21 | android.nonTransitiveRClass=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 13 19:16:38 IST 2024 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /preview/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/1.png -------------------------------------------------------------------------------- /preview/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/2.png -------------------------------------------------------------------------------- /preview/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/3.png -------------------------------------------------------------------------------- /preview/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/4.png -------------------------------------------------------------------------------- /preview/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/5.png -------------------------------------------------------------------------------- /preview/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/6.png -------------------------------------------------------------------------------- /preview/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/7.png -------------------------------------------------------------------------------- /preview/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/8.png -------------------------------------------------------------------------------- /preview/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/9.png -------------------------------------------------------------------------------- /preview/download_Btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/download_Btn.png -------------------------------------------------------------------------------- /preview/partly_cloudy_day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preview/readme_app_icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /preview/thumbnail_mat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranshulGG/WeatherMaster/228688fc4a19a829e624d31c2f1a574c09442761/preview/thumbnail_mat.png -------------------------------------------------------------------------------- /release/output-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "artifactType": { 4 | "type": "APK", 5 | "kind": "Directory" 6 | }, 7 | "applicationId": "com.example.weathermaster", 8 | "variantName": "release", 9 | "elements": [ 10 | { 11 | "type": "SINGLE", 12 | "filters": [], 13 | "attributes": [], 14 | "versionCode": 56, 15 | "versionName": "1.6.4 (W)", 16 | "outputFile": "app-release.apk" 17 | } 18 | ], 19 | "elementType": "File" 20 | } 21 | 22 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | google() 4 | mavenCentral() 5 | gradlePluginPortal() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | 16 | rootProject.name = "WeatherMaster" 17 | include ':app' 18 | --------------------------------------------------------------------------------