feat(NetflixHTTPSubResourceHandler): Fixed issue with missing sleep declaration in...
authorSebastian Golasch <public@asciidisco.com>
Thu, 16 Mar 2017 15:36:29 +0000 (16:36 +0100)
committerSebastian Golasch <public@asciidisco.com>
Thu, 16 Mar 2017 15:36:29 +0000 (16:36 +0100)
addon.xml
resources/language/English/strings.po
resources/language/German/strings.po
resources/language/Slovak/strings.po
resources/language/Spanish/strings.po
resources/lib/NetflixHttpSubRessourceHandler.py

index 9cdf2344996359b2c262d90530834f19573aa940..048a00d81569cffff240f72c40dd5afe55710949 100644 (file)
--- a/addon.xml
+++ b/addon.xml
@@ -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"/>
     <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>
index 1d452549c1bbb7e6a72f1fee91e01af0c8ab8428..8775c14b1f24f75ebf119ff24f63a89c3e36a558 100644 (file)
@@ -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 ""
index 515cc5f6392b5a21c50d26e72afb5dd26fafe07b..73e7d9b823984c8a90b84041cd5c9c5ac130ff8e 100644 (file)
@@ -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 ""
index 527d29db8064b4e588f8340d51cc818c90049b95..3933419962d191cfea5b634fe5524f19fea7e3aa 100644 (file)
@@ -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 ""
index b841a3b08d4e7c316a7380848c68e06ef3bcce7b..596d43e6a17b3e4b03687527ba998fa067fa5ad5 100644 (file)
@@ -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 ""
index 3c6e7e425869849870f468b068a70e8b61489852..5123ceb5d1f7b184a2c3e9d35aefd78656602249 100644 (file)
@@ -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"""