From 56747e0fdf2a62008cda9550b58c4361d79589c2 Mon Sep 17 00:00:00 2001 From: Amit Chaudhary Date: Sun, 30 Jun 2024 11:39:08 +0530 Subject: [PATCH] Release_v1.3.2 --- data/io.github.amit9838.mousam.appdata.xml.in | 19 ++++++++++++++++++- meson.build | 2 +- src/windowAbout.py | 4 ++-- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/data/io.github.amit9838.mousam.appdata.xml.in b/data/io.github.amit9838.mousam.appdata.xml.in index 36c1c5e..2049d6c 100644 --- a/data/io.github.amit9838.mousam.appdata.xml.in +++ b/data/io.github.amit9838.mousam.appdata.xml.in @@ -4,7 +4,7 @@ CC0-1.0 GPL-3.0-or-later Mousam - Weather at a Glance + Weather at a glance

Current Weather conditions and forcasts.

Features:

@@ -62,6 +62,23 @@ + + +

What's New

+
    +
  • New app icon, Thanks to @bertob
  • +
+

Bug fixes

+
    +
  • Fix issue where sunset/sunrise time always was always displayed in 12H format.
  • +
  • Fix sun rotation to work with 12H and 24H format.
  • +
+

Translation

+
    +
  • Updated Hindi translation thanks to @Scrambled777
  • +
+
+

Bug fixes

diff --git a/meson.build b/meson.build index d7cc011..b7fc33b 100644 --- a/meson.build +++ b/meson.build @@ -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', ], ) diff --git a/src/windowAbout.py b/src/windowAbout.py index 0e6e57b..c9c6377 100644 --- a/src/windowAbout.py +++ b/src/windowAbout.py @@ -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"])