Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[weather.ozweather@matrix] 2.1.3 #2666

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions weather.ozweather/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.1.2" provider-name="Bossanova808">
<addon id="weather.ozweather" name="Oz Weather" version="2.1.3" 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 @@ -23,7 +23,9 @@
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>v2.1.2
<news>v2.1.3
- Bugfix for 2.1.2, fix missed import
v2.1.2
- Remove old common code, instead use new script.module.bossanova808
- Fix for occasional error with missing national radar background
</news>
Expand Down
3 changes: 3 additions & 0 deletions weather.ozweather/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v2.1.3
- Bugfix for 2.1.2, fix missed import

v2.1.2
- Remove old common code, instead use new script.module.bossanova808
- Fix for occasional error with missing national radar background
Expand Down
1 change: 1 addition & 0 deletions weather.ozweather/resources/lib/bom/bom_radar.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import glob
import shutil
import sys
import os
import time
import urllib.error
import urllib.parse
Expand Down
Loading