Skip to content

Commit

Permalink
Prepare for v2.5.9 release (#950)
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaminister authored Apr 20, 2022
1 parent 6bb171c commit 428da4b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 33 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ leave a message at [our Facebook page](https://facebook.com/kodivrtnu/).
</table>

## Releases
### v2.5.9 (2022-04-20)
- Fix broken menu listings (@mediaminister)

### v2.5.8 (2022-04-14)
- Fix watching VRT NU abroad (@mediaminister)
- Fix webscraping video attributes (@mediaminister)
Expand Down
35 changes: 4 additions & 31 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="plugin.video.vrt.nu" name="VRT NU" version="2.5.8" provider-name="Martijn Moreel, dagwieers, mediaminister">
<addon id="plugin.video.vrt.nu" name="VRT NU" version="2.5.9" provider-name="Martijn Moreel, dagwieers, mediaminister">
<requires>
<import addon="resource.images.studios.white" version="0.0.22"/>
<import addon="script.module.beautifulsoup4" version="4.6.2"/>
Expand Down Expand Up @@ -42,6 +42,9 @@
<website>https://github.com/add-ons/plugin.video.vrt.nu/wiki</website>
<source>https://github.com/add-ons/plugin.video.vrt.nu</source>
<news>
v2.5.9 (2022-04-20)
- Fix broken menu listings

v2.5.8 (2022-04-14)
- Fix watching VRT NU abroad
- Fix webscraping video attributes
Expand Down Expand Up @@ -73,36 +76,6 @@ v2.5.1 (2021-04-07)

v2.5.0 (2021-03-29)
- Add new categories to featured menu

v2.4.5 (2021-02-05)
- Fix watching livestreams with DRM enabled
- Warn user that InputStream Adaptive is needed for timeshifting

v2.4.4 (2021-01-25)
- Fix watching VRT NU abroad

v2.4.3 (2021-01-21)
- Add new channel "Podium 19"
- Add livestream cache to speed up playback
- Use InputStream Adaptive to play HLS
- Don't log credentials in the Kodi debug log

v2.4.2 (2020-12-18)
- Fix missing seasons (for 'Thuis') in TV Show menu
- Fix missing favourite programs in 'My programs' menuu
- Allow IPTV Manager and Kodi Logfile Uploader installation from add-on settingsu
- Updated Categories menu
- Fix date parsing on Windows

v2.4.1 (2020-10-31)
- Add new category "Nostalgia"
- Add poster support
- Add product placement and "kijkwijzer" metadata
- Get categories from online JSON
- Improvements to connection error handling
- Improvements to virtual subclip support
- Extend soon offline menu to seven days
- Improve Up Next support
</news>
<assets>
<icon>resources/media/icon.png</icon>
Expand Down
4 changes: 2 additions & 2 deletions resources/lib/favorites.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def unfollow(self, program_name, title, program_id=None, move_down=False):

def programs(self):
"""Return all favorite programs"""
return self._favorites.keys()
return list(self._favorites.keys())

@staticmethod
def _generate_favorites_dict(favorites_json):
Expand Down Expand Up @@ -203,7 +203,7 @@ def by_title(tup):
return value.get('title')

items = [dict(program_id=value.get('program_id'), program_name=key,
title=unquote(value.get('title'))) for key, value in sorted(self._favorites.items(), key=by_title)]
title=unquote(value.get('title'))) for key, value in sorted(list(self._favorites.items()), key=by_title)]
titles = [item['title'] for item in items]
preselect = list(range(0, len(items)))
selected = multiselect(localize(30420), options=titles, preselect=preselect) # Please select/unselect to follow/unfollow
Expand Down

0 comments on commit 428da4b

Please sign in to comment.