Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into foss
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaroti9 committed Sep 17, 2024
2 parents 9ebfcf1 + c706542 commit 15b83e4
Show file tree
Hide file tree
Showing 29 changed files with 797 additions and 222 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
![app_screens](Screenshots/Overmorrow_white_circle_mini.png)

# Overmorrow weather

![app_gallery](Screenshots/new_preview.png)
![app_gallery](Screenshots/new_feature_graphic_yellow.jpg)

## Minimalist colorful weather app

![app_gallery](Screenshots/app_gallery4_tranparent.png)

### Beautiful minimalist weather app.

![app_screens](Screenshots/app_gallery3.png)
| [![Download on Google Play](/Screenshots/play_badge4.png 'Download')](https://play.google.com/store/apps/details?id=com.marotidev.Overmorrow) | [![Download on IzzyOnDroid](/Screenshots/IzzyOnDroid_c.png 'Download')](https://apt.izzysoft.de/fdroid/index/apk/com.marotidev.Overmorrow/) |
|---|---|


## Weather providers 🌨️
- [open-meteo](https://open-meteo.com)
- [weatherapi.com](https://www.weatherapi.com)
Expand Down Expand Up @@ -59,6 +58,8 @@ So instead here is my take on the weather app ui (but i did kep it free and ad f
- ✅ Settings/Info/Donate pages
- ✅ Tablet mode
- ✅ more than one weather provider
- ✅ add network images
- ✅ material you

#### hope to add in the near-future:

Expand Down
Binary file removed Screenshots/Overmorrow_white_circle_mini.png
Binary file not shown.
Binary file added Screenshots/app_gallery4_tranparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/new_feature_graphic_yellow.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Screenshots/new_preview.png
Binary file not shown.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ android {
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode 41
versionName "2.4.1"
versionCode 42
versionName "2.4.2"
}

buildTypes {
Expand Down
6 changes: 4 additions & 2 deletions lib/decoders/decode_OM.dart
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,9 @@ class OMHour {
sunstatus, item["hourly"]["time"][index])),
time: settings["Time mode"] == '12 hour'? oMamPmTime(item["hourly"]["time"][index]) : oM24hour(item["hourly"]["time"][index]),

precip: unit_coversion(item["hourly"]["precipitation"][index], settings["Precipitation"]),
precip: double.parse(
unit_coversion(item["hourly"]["precipitation"][index], settings["Precipitation"]).toStringAsFixed(1)),

precip_prob: item["hourly"]["precipitation_probability"][index],
wind: double.parse(
unit_coversion(item["hourly"]["wind_speed_10m"][index], settings["Wind"]).toStringAsFixed(1)),
Expand Down Expand Up @@ -614,7 +616,7 @@ class OMSunstatus {
? OMConvertTime(item["daily"]["sunrise"][0])
: OMamPmTime(item["daily"]["sunrise"][0]),
sunset: settings["Time mode"] == "24 hour"
? OMConvertTime(item["daily"]["sunrise"][0])
? OMConvertTime(item["daily"]["sunset"][0])
: OMamPmTime(item["daily"]["sunset"][0]),
absoluteSunriseSunset: "${OMConvertTime(item["daily"]["sunrise"][0])}/"
"${OMConvertTime(item["daily"]["sunset"][0])}",
Expand Down
Loading

0 comments on commit 15b83e4

Please sign in to comment.