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.0 #2549

Merged
merged 1 commit into from
Dec 2, 2023
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: 3 additions & 3 deletions weather.ozweather/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ Kodi Oz Weather

Script for Kodi for high quality Australian weather data sourced directly from the BOM.

Available from the Kodi official repository (i.e. don't install from here - just go to Addons -> Get Addons -> Weather -> OzWeather)
Available from the Kodi official repository (i.e. don't install from here - just go to Add-ons -> Get Add-ons -> Weather -> OzWeather)

Retrieves BOM data including current conditions, 7-day forecast, and animated radar images.

Script works fine standalone for standard high quality Australian weather data, but you need to make skin changes for the best bit, which is the animated BOM radar support. See the Kodi [wiki page](http://wiki.xbmc.org/index.php?title=Add-on:Oz_Weather) for full details and links to the skin files.
Script works fine stand-alone for standard high quality Australian weather data, but you need to make skin changes for the best bit, which is the animated BOM radar support. See the Kodi [wiki page](http://wiki.xbmc.org/index.php?title=Add-on:Oz_Weather) for full details and links to a tool to make this very easy (or the actual modified skin files, if you wish to do this manually).

Contributions of skin files for other skins gratefully accepted....just message me on the forums with your skin files (or even better jsut add them directly to the Wiki yourself!).
Contributions of skin files for other skins gratefully accepted....just message me on the forums with your skin files.

Support is via the [forum thread](<https://forum.kodi.tv/showthread.php?tid=116905>), or open an issue here.

Expand Down
6 changes: 3 additions & 3 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.0.9" provider-name="Bossanova808">
<addon id="weather.ozweather" name="Oz Weather" version="2.1.0" 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,8 +22,8 @@
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>2.0.9
- Better fix for ABC weather video
<news>2.1.0
- Fix light_rain icon &amp; update BOM radar list
</news>
</extension>
</addon>
3 changes: 3 additions & 0 deletions weather.ozweather/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.1.0
- Fix light_rain icon & update BOM radar list

2.0.9
- Better fix for ABC weather video

Expand Down
4 changes: 2 additions & 2 deletions weather.ozweather/resources/lib/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class Store:
# http://www.bom.gov.au/australia/radar/info/nt_info.shtml
(-23.82, 133.90, "Alice Springs", "IDR253"),
(-12.46, 130.93, "Darwin/Berrimah", "IDR633"),
(-12.28, 136.82, "Gove", "IDR093"),
(-12.27, 136.82, "Gove", "IDR1123"),
(-14.51, 132.45, "Katherine/Tindal", "IDR423"),
(-11.6494, 133.38, "Warruwi", "IDR773")
]
Expand Down Expand Up @@ -186,7 +186,7 @@ class Store:
'rain': '45',
'rain_and_snow': '46',
'rain_clearing': '45',
'Light_rain': '12',
'light_rain': '12',
'rain_developing': '45',
'rain_tending to_snow': '45',
'shower': '45',
Expand Down
Loading