Skip to content

Commit

Permalink
v2.0.8 - version bump to try and solve issues with Kodi addon submitter
Browse files Browse the repository at this point in the history
  • Loading branch information
bossanova808 committed May 31, 2023
2 parents fdc8da1 + 2dfc2cd commit 4616151
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# These files are blocked from the release.zip creation
.gitignore export-ignore
.gitattributes export-ignore
.github export-ignore
*.pyc export-ignore
*.pyo export-ignore
# These files are blocked from the release.zip creation
.gitignore export-ignore
.gitattributes export-ignore
.github export-ignore
*.pyc export-ignore
*.pyo export-ignore
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: bossanova808
custom: "https://www.buymeacoffee.com/bossanova808"
github: bossanova808
custom: "https://www.buymeacoffee.com/bossanova808"
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="weather.ozweather" name="Oz Weather" version="2.0.7" provider-name="Bossanova808">
<addon id="weather.ozweather" name="Oz Weather" version="2.0.8" provider-name="Bossanova808">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.22.0+matrix.1"/>
Expand All @@ -22,7 +22,7 @@
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>v2.0.7
<news>v2.0.8
- Fix for moved ABC weather videos, update list of radars
</news>
</extension>
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.0.7
2.0.8
- Fix for moved ABC weather videos, update list of radars

2.0.6
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/ozweather.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def run(args):

# RUN MODE - ADDON CALLED FORM Kodi SETTINGS
# the addon is being called from the settings section where the user enters their postcodes
if args[1].startswith('ABC'):
elif args[1].startswith('ABC'):
scrape_and_play_abc_weather_video()

# RUN MODE - GET WEATHER OBSERVATIONS AND FORECAST
Expand Down

0 comments on commit 4616151

Please sign in to comment.