Skip to content

Commit

Permalink
release: v1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newt-sc committed Apr 26, 2021
1 parent 202ec4e commit cad25ff
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v1.27.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.27.0):
* Fix browsing seasons of some shows with incomplete meta for future works

* [v1.26.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.26.0):
* Handle meta issues where an older episode has newer release date

Expand Down
2 changes: 1 addition & 1 deletion a4kStreaming/explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def __add_seasons(core, title):
url += '&day_end=%s' % season.day_end

context_menu_items = []
last_episode_has_rating = season.last_episode.get('userRating', None) is not None
last_episode_has_rating = season.last_episode and season.last_episode.get('userRating', None) is not None
if last_episode_has_rating:
list_item.setInfo('video', {
'overlay': 5,
Expand Down
5 changes: 4 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.26.0"
version="1.27.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -32,6 +32,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.27.0]:
* Fix browsing seasons of some shows with incomplete meta for future works

[v1.26.0]:
* Handle meta issues where an older episode has newer release date

Expand Down
5 changes: 4 additions & 1 deletion packages/addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<addons>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.26.0"
version="1.27.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -35,6 +35,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.27.0]:
* Fix browsing seasons of some shows with incomplete meta for future works

[v1.26.0]:
* Handle meta issues where an older episode has newer release date

Expand Down
2 changes: 1 addition & 1 deletion packages/addons.xml.crc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c93ab7aebbe35f6d1c5e14f74ee6f846dd02469e
d9515341da631c33c52af2d1c70129805718aa26

0 comments on commit cad25ff

Please sign in to comment.