Skip to content

Commit

Permalink
Fix light_rain weather icon & update BOM radar list
Browse files Browse the repository at this point in the history
Plus some tidy-ups
  • Loading branch information
bossanova808 committed Nov 27, 2023
1 parent 14cde23 commit 8f31714
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions 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 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 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 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

0 comments on commit 8f31714

Please sign in to comment.