Skip to content

Commit

Permalink
Release_v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Chaudhary committed Jun 10, 2024
1 parent 16b5dbf commit 2d57ba0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
16 changes: 13 additions & 3 deletions data/io.github.amit9838.mousam.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,22 @@
</categories>
<content_rating type="oars-1.1" />
<releases>
<release version="1.3.1" date="2024-6-10">
<description translate="no">
<p>Bug fixes</p>
<ul>
<li>Fix issue where weekly forecast stays celcius when fahrenheit is selected.</li>
<li>Fix issue where switching from fahrenheit to celcius dosesn't change to celcius.</li>
</ul>
</description>
</release>
<release version="1.3.0" date="2024-06-09">
<description translate="no">
<p>What's New</p>
<ul>
<li>Added Option to switch between diffrent time-formats 12h/24h.</li>
<li>Now app remembres the window size/state.</li>
<li>Improved app startup and wether refresh performance.</li>
<li>Added Option to switch between different time-formats 12h/24h.</li>
<li>Now app retains the window size/state.</li>
<li>Improved app startup and weather refresh performance.</li>
</ul>

<p>Translation</p>
Expand All @@ -78,6 +87,7 @@
</ul>
</description>
</release>

<release version="1.2.0" date="2024-05-14">
<description translate="no">
<p>What's New</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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', ],
)
Expand Down
Binary file modified screenshots/ss2-thunderstorm.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 modified screenshots/ss3-clear_sky-imperial.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/backendWeather.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/windowAbout.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit 2d57ba0

Please sign in to comment.