Skip to content

Commit

Permalink
release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-newstok committed Jul 5, 2023
1 parent a8715fb commit 51eeb4b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</div>

## Features
* See weather with dynamically changing gradient-based background according current weather conditions
* See weather with dynamically changing gradient-based background according to current weather conditions
* See today, tomorrow and 5-day forcasts
* See conditions in metric or imperial systems
* Option to use Personal API Key
Expand Down
11 changes: 11 additions & 0 deletions data/io.github.amit9838.weather.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@
</categories>
<content_rating type="oars-1.1" />
<releases>
<release version="0.5.0" date="2023-07-05">
<description>
<ul>
<li>Adds sunset/sunrise info</li>
<li>Add and remove city more quickly</li>
<li>Better error screens like - No internet!</li>
<li>UI Improvements</li>
<li>Various bug fixes</li>
</ul>
</description>
</release>
<release version="0.4.0" date="2023-06-25">
<description>
<ul>
Expand Down
4 changes: 2 additions & 2 deletions io.github.amit9838.weather.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"sources" : [
{
"type" : "git",
"tag" : "v0.4.0",
"commit" : "ace003a5d6d43308c2f633be5a32c376a8df99c3",
"tag" : "v0.5.0",
"commit" : "a8715fb282f025a7a9d5da2b29a3f8ab45389af0",
"url" : "https://github.com/amit9838/weather.git"
}
]
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ parts:
# See 'snapcraft plugins'
plugin: meson
source: https://github.com/amit9838/weather.git
source-tag: 'v0.4.0'
source-tag: 'v0.5.0'
meson-parameters: [ --prefix=/snap/mousam/current/usr ]
override-pull: |
craftctl default
Expand Down
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def set_weather_data(current,forecast):

def check_internet_connection():
url = "http://www.google.com"
timeout = 10 # Set the timeout value in seconds
timeout = 5 # Set the timeout value in seconds
response_text = ""
has_active_internet = False
try:
Expand Down
2 changes: 1 addition & 1 deletion src/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def AboutWindow(self, action,*args):
dialog = Adw.AboutWindow()
dialog.set_application_name(_("Weather"))
dialog.set_application_icon("io.github.amit9838.weather")
dialog.set_version("0.4.0")
dialog.set_version("0.5.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 51eeb4b

Please sign in to comment.