Skip to content

Commit

Permalink
Release_v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Chaudhary committed Jun 9, 2024
1 parent e17cbbb commit 0bd1145
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="data/icons/hicolor/scalable/apps/io.github.amit9838.mousam.svg?raw=true" width="120">
<h1>Mousam</h1>

<p>Beautiful lightweight weather app based on Python and Gtk</p>
<p>Weather at a Glance</p>


<a href = "https://github.com/amit9838/mousam/releases"><img src="https://img.shields.io/github/v/release/amit9838/mousam?style=flat&label=Latest+Release&color=%234a92ff"></a>
Expand Down
22 changes: 21 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>Beautiful and lightweight weather app</summary>
<summary>Weather at a Glance</summary>
<description>
<p>Current Weather conditions and forcasts.</p>
<p>Features:</p>
Expand Down Expand Up @@ -58,6 +58,26 @@
</categories>
<content_rating type="oars-1.1" />
<releases>
<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>
</ul>

<p>Translation</p>
<ul>
<li>Romanian by @georgescutelnicu</li>
<li>French by @SpicyWasab</li>
</ul>
<p>Thanks to</p>
<ul>
<li>And thanks to them who reported bug on github issues.</li>
</ul>
</description>
</release>
<release version="1.2.0" date="2024-05-14">
<description translate="no">
<p>What's New</p>
Expand Down
4 changes: 2 additions & 2 deletions data/io.github.amit9838.mousam.desktop.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[Desktop Entry]
Name=Mousam
Exec=mousam
Comment=Beautiful and lightweight weather app
Comment=Weather at a Glance
Icon=io.github.amit9838.mousam
Terminal=false
Type=Application
Categories=Application;Utility;GTK;
Keywords=Weather;Mousam;Rain;Cloud;Forecast;
Keywords=Weather;Mousam;Rain;Cloud;Forecast;GTK4;Python;temperature;
StartupNotify=true
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.2.0',
version: '1.3.0',
meson_version: '>= 0.61.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
Expand Down
Binary file modified screenshots/ss1-dark_mode.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/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.
Binary file modified screenshots/ss4-light_mode.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/ss5-overcast.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: 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.2.0")
dialog.set_version("1.3.0")
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 0bd1145

Please sign in to comment.