Skip to content

Commit

Permalink
feat(NetflixHTTPSubResourceHandler): Fixed issue with missing sleep d…
Browse files Browse the repository at this point in the history
…eclaration in network check
  • Loading branch information
asciidisco committed Mar 16, 2017
1 parent ac8e493 commit 0ecc215
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
11 changes: 3 additions & 8 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.netflix" name="Netflix" version="0.11.3" provider-name="libdev + jojo + asciidisco">
<addon id="plugin.video.netflix" name="Netflix" version="0.11.4" provider-name="libdev + jojo + asciidisco">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
Expand Down Expand Up @@ -28,12 +28,7 @@
<license>MIT</license>
<forum>http://www.kodinerds.net/index.php/Thread/55607-Inputstream-Agile-Betatest-Netflix/</forum>
<source>https://github.com/asciidisco/plugin.video.netflix</source>
<news>v0.11.3 (2017-3-16)
- Added spanish and slowenian language files
- Added license file
- Adapted to latest API changes from Netflix
- Fixed issues with entering KIDS profiles
- Fixed prefetching started before network was available
- Fixed issues with cached lists when switching profiles</news>
<news>v0.11.4 (2017-3-16)
- Fixed issue with missing sleep declaration in network check</news>
</extension>
</addon>
2 changes: 1 addition & 1 deletion resources/language/English/strings.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kodi Media Center language file
# Addon Name: Netflix
# Addon id: plugin.video.netflix
# Addon version: 0.11.3
# Addon version: 0.11.4
# Addon Provider: libdev + jojo + asciidisco
msgid ""
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion resources/language/German/strings.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kodi Media Center language file
# Addon Name: Netflix
# Addon id: plugin.video.netflix
# Addon version: 0.11.3
# Addon version: 0.11.4
# Addon Provider: libdev + jojo + asciidisco
msgid ""
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion resources/language/Slovak/strings.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kodi Media Center language file
# Addon Name: Netflix
# Addon id: plugin.video.netflix
# Addon version: 0.11.3
# Addon version: 0.11.4
# Addon Provider: libdev + jojo + asciidisco
msgid ""
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion resources/language/Spanish/strings.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kodi Media Center language file
# Addon Name: Netflix
# Addon id: plugin.video.netflix
# Addon version: 0.11.3
# Addon version: 0.11.4
# Addon Provider: libdev + jojo + asciidisco
msgid ""
msgstr ""
Expand Down
1 change: 1 addition & 0 deletions resources/lib/NetflixHttpSubRessourceHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Created on: 07.03.2017

from urllib2 import urlopen, URLError
from time import sleep

class NetflixHttpSubRessourceHandler:
""" Represents the callable internal server routes & translates/executes them to requests for Netflix"""
Expand Down

0 comments on commit 0ecc215

Please sign in to comment.