Skip to content

Commit

Permalink
Merge pull request #49 from amit9838/patch
Browse files Browse the repository at this point in the history
release v1.0.1
  • Loading branch information
amit9838 authored Jan 15, 2024
2 parents 47965bf + 9ae59ab commit d7239da
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion data/io.github.amit9838.weather.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</screenshot>
</screenshots>
<launchable type="desktop-id">io.github.amit9838.weather.desktop</launchable>
<url type="homepage">https://github.com/amit9838/weather</url>
<url type="homepage">https://amit9838.github.io/weather/</url>
<url type="bugtracker">https://github.com/amit9838/weather/issues</url>
<url type="translate">https://github.com/amit9838/weather/tree/master/po</url>
<url type="vcs-browser">https://github.com/amit9838/weather</url>
Expand All @@ -55,6 +55,15 @@
</categories>
<content_rating type="oars-1.1" />
<releases>
<release version="1.0.1" date="2024-01-16">
<description translatable="no">
<p>Bug fixes</p>
<ul>
<li>Fix bug where some locations dosen't provide valid co-ordinates</li>
<li>Add website in about section </li>
</ul>
</description>
</release>
<release version="1.0.0" date="2024-01-14">
<description translatable="no">
<p>What's New</p>
Expand Down
6 changes: 3 additions & 3 deletions src/windowAbout.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import gi
gi.require_version('Gtk', '4.0')
gi.require_version('Adw', '1')
from gi.repository import Gtk, Adw,Gio,GLib
from gi.repository import Gtk, Adw

def AboutWindow(parent,*args):
dialog = Adw.AboutWindow.new()
dialog.set_application_name(_("Weather"))
dialog.set_application_icon("io.github.amit9838.weather")
dialog.set_version("1.0.0")
dialog.set_version("1.0.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"))
dialog.set_website("https://github.com/amit9838/weather")
dialog.set_website("https://amit9838.github.io/weather/")
dialog.set_issue_url("https://github.com/amit9838/weather/issues")
# dialog.add_credit_section("Contributors", ["name url"])
dialog.set_copyright(_("Copyright © 2023 Weather Developers"))
Expand Down

0 comments on commit d7239da

Please sign in to comment.