diff --git a/README.md b/README.md
index 13830c1..3e9d3ff 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
## 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
diff --git a/data/io.github.amit9838.weather.appdata.xml.in b/data/io.github.amit9838.weather.appdata.xml.in
index 16e05ec..69f3dcd 100644
--- a/data/io.github.amit9838.weather.appdata.xml.in
+++ b/data/io.github.amit9838.weather.appdata.xml.in
@@ -44,6 +44,17 @@
+
+
+
+ - Adds sunset/sunrise info
+ - Add and remove city more quickly
+ - Better error screens like - No internet!
+ - UI Improvements
+ - Various bug fixes
+
+
+
diff --git a/io.github.amit9838.weather.json b/io.github.amit9838.weather.json
index 7ec0384..e8fa32f 100644
--- a/io.github.amit9838.weather.json
+++ b/io.github.amit9838.weather.json
@@ -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"
}
]
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 402f634..1ca9b2e 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -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
diff --git a/src/utils.py b/src/utils.py
index d9a869a..86a51b4 100644
--- a/src/utils.py
+++ b/src/utils.py
@@ -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:
diff --git a/src/windows.py b/src/windows.py
index ff9c6eb..1850966 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -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"))