Skip to content

Commit

Permalink
Release_v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Chaudhary committed Jun 30, 2024
1 parent f799992 commit 56747e0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion data/io.github.amit9838.mousam.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<name>Mousam</name>
<summary>Weather at a Glance</summary>
<summary>Weather at a glance</summary>
<description>
<p>Current Weather conditions and forcasts.</p>
<p>Features:</p>
Expand Down Expand Up @@ -62,6 +62,23 @@
</categories>
<content_rating type="oars-1.1" />
<releases>
<release version="1.3.2" date="2024-6-30">
<description translate="no">
<p>What's New</p>
<ul>
<li>New app icon, Thanks to @bertob</li>
</ul>
<p>Bug fixes</p>
<ul>
<li>Fix issue where sunset/sunrise time always was always displayed in 12H format.</li>
<li>Fix sun rotation to work with 12H and 24H format.</li>
</ul>
<p>Translation</p>
<ul>
<li>Updated Hindi translation thanks to @Scrambled777</li>
</ul>
</description>
</release>
<release version="1.3.1" date="2024-6-10">
<description translate="no">
<p>Bug fixes</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.1',
version: '1.3.2',
meson_version: '>= 0.61.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
Expand Down
4 changes: 2 additions & 2 deletions src/windowAbout.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ 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.1")
dialog.set_version("1.3.2")
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"))
dialog.set_comments(_("Weather at a glance"))
dialog.set_website("https://amit9838.github.io/mousam/")
dialog.set_issue_url("https://github.com/amit9838/mousam/issues")
# dialog.add_credit_section("Contributors", ["name url"])
Expand Down

0 comments on commit 56747e0

Please sign in to comment.