Bug fixes
+What's New
Translation
@@ -78,6 +87,7 @@What's New
diff --git a/meson.build b/meson.build index 7f89957..d7cc011 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('mousam', - version: '1.3.0', + version: '1.3.1', meson_version: '>= 0.61.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/screenshots/ss2-thunderstorm.png b/screenshots/ss2-thunderstorm.png index 2f17ebf..2d39044 100644 Binary files a/screenshots/ss2-thunderstorm.png and b/screenshots/ss2-thunderstorm.png differ diff --git a/screenshots/ss3-clear_sky-imperial.png b/screenshots/ss3-clear_sky-imperial.png index 9067dd6..0b88c08 100644 Binary files a/screenshots/ss3-clear_sky-imperial.png and b/screenshots/ss3-clear_sky-imperial.png differ diff --git a/src/backendWeather.py b/src/backendWeather.py index c63a22a..667d7c2 100644 --- a/src/backendWeather.py +++ b/src/backendWeather.py @@ -17,6 +17,8 @@ def __init__(self) -> None: if settings.unit == "imperial": extend_url = f"&temperature_unit=fahrenheit&wind_speed_unit=mph" + else: + extend_url = "" # Current Weather ============================================= @classmethod diff --git a/src/windowAbout.py b/src/windowAbout.py index 3662264..0e6e57b 100644 --- a/src/windowAbout.py +++ b/src/windowAbout.py @@ -7,7 +7,7 @@ def AboutWindow(parent,*args): dialog = Adw.AboutWindow.new() dialog.set_application_name("Mousam") dialog.set_application_icon("io.github.amit9838.mousam") - dialog.set_version("1.3.0") + dialog.set_version("1.3.1") dialog.set_developer_name("Amit Chaudhary") dialog.set_license_type(Gtk.License(Gtk.License.GPL_3_0)) dialog.set_comments(_("Beautiful and light weight weather app build using Gtk and Python"))