Skip to content

Commit 56747e0

Browse files
author
Amit Chaudhary
committedJun 30, 2024
Release_v1.3.2
1 parent f799992 commit 56747e0

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed
 

‎data/io.github.amit9838.mousam.appdata.xml.in

+18-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<metadata_license>CC0-1.0</metadata_license>
55
<project_license>GPL-3.0-or-later</project_license>
66
<name>Mousam</name>
7-
<summary>Weather at a Glance</summary>
7+
<summary>Weather at a glance</summary>
88
<description>
99
<p>Current Weather conditions and forcasts.</p>
1010
<p>Features:</p>
@@ -62,6 +62,23 @@
6262
</categories>
6363
<content_rating type="oars-1.1" />
6464
<releases>
65+
<release version="1.3.2" date="2024-6-30">
66+
<description translate="no">
67+
<p>What's New</p>
68+
<ul>
69+
<li>New app icon, Thanks to @bertob</li>
70+
</ul>
71+
<p>Bug fixes</p>
72+
<ul>
73+
<li>Fix issue where sunset/sunrise time always was always displayed in 12H format.</li>
74+
<li>Fix sun rotation to work with 12H and 24H format.</li>
75+
</ul>
76+
<p>Translation</p>
77+
<ul>
78+
<li>Updated Hindi translation thanks to @Scrambled777</li>
79+
</ul>
80+
</description>
81+
</release>
6582
<release version="1.3.1" date="2024-6-10">
6683
<description translate="no">
6784
<p>Bug fixes</p>

‎meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('mousam',
2-
version: '1.3.1',
2+
version: '1.3.2',
33
meson_version: '>= 0.61.0',
44
default_options: [ 'warning_level=2', 'werror=false', ],
55
)

‎src/windowAbout.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ def AboutWindow(parent,*args):
77
dialog = Adw.AboutWindow.new()
88
dialog.set_application_name("Mousam")
99
dialog.set_application_icon("io.github.amit9838.mousam")
10-
dialog.set_version("1.3.1")
10+
dialog.set_version("1.3.2")
1111
dialog.set_developer_name("Amit Chaudhary")
1212
dialog.set_license_type(Gtk.License(Gtk.License.GPL_3_0))
13-
dialog.set_comments(_("Beautiful and light weight weather app build using Gtk and Python"))
13+
dialog.set_comments(_("Weather at a glance"))
1414
dialog.set_website("https://amit9838.github.io/mousam/")
1515
dialog.set_issue_url("https://github.com/amit9838/mousam/issues")
1616
# dialog.add_credit_section("Contributors", ["name url"])

0 commit comments

Comments
 (0)
Please sign in to comment.