bases update
parent
6205948682
commit
aa0cb59499
13
Content.py
13
Content.py
|
@ -173,7 +173,18 @@ class Content:
|
||||||
encodedData = urllib.urlencode(data)
|
encodedData = urllib.urlencode(data)
|
||||||
else:
|
else:
|
||||||
encodedData = None
|
encodedData = None
|
||||||
response = opener.open(url, encodedData)
|
try:
|
||||||
|
response = opener.open(url, encodedData)
|
||||||
|
except urllib2.HTTPError as e:
|
||||||
|
if e.code == 404:
|
||||||
|
print '[makeRequest]: Not Found! HTTP Error, e.code=' + str(e.code)
|
||||||
|
return
|
||||||
|
elif e.code in [503]:
|
||||||
|
print '[makeRequest]: Denied, HTTP Error, e.code=' + str(e.code)
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
print '[makeRequest]: HTTP Error, e.code=' + str(e.code)
|
||||||
|
|
||||||
if response.info().get('Content-Encoding') == 'gzip':
|
if response.info().get('Content-Encoding') == 'gzip':
|
||||||
buf = StringIO(response.read())
|
buf = StringIO(response.read())
|
||||||
f = gzip.GzipFile(fileobj=buf)
|
f = gzip.GzipFile(fileobj=buf)
|
||||||
|
|
2
Core.py
2
Core.py
|
@ -62,7 +62,7 @@ class Core:
|
||||||
('«', '"'),
|
('«', '"'),
|
||||||
('»', '"'),
|
('»', '"'),
|
||||||
)
|
)
|
||||||
scrapperDB_ver = {'en':'1.1', 'ru':'1.2'}
|
scrapperDB_ver = {'en':'1.1', 'ru':'1.3'}
|
||||||
|
|
||||||
print 'SYS ARGV: ' + str(sys.argv)
|
print 'SYS ARGV: ' + str(sys.argv)
|
||||||
|
|
||||||
|
|
|
@ -197,10 +197,8 @@ class TorrentPlayer(xbmc.Player):
|
||||||
# mp4 fix
|
# mp4 fix
|
||||||
label = os.path.basename(self.torrent.getFilePath(self.contentId))
|
label = os.path.basename(self.torrent.getFilePath(self.contentId))
|
||||||
isMP4 = False
|
isMP4 = False
|
||||||
if '.' in label:
|
if '.' in label and str(label.split('.')[-1]).lower() == 'mp4':
|
||||||
ext = label.split('.')[-1]
|
isMP4 = True
|
||||||
if ext.lower() == 'mp4':
|
|
||||||
isMP4 = True
|
|
||||||
# print 'setup_torrent: '+str((self.contentId, Offset, isMP4, label, ext))
|
# print 'setup_torrent: '+str((self.contentId, Offset, isMP4, label, ext))
|
||||||
self.torrent.continueSession(self.contentId, Offset=Offset, isMP4=isMP4)
|
self.torrent.continueSession(self.contentId, Offset=Offset, isMP4=isMP4)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
[B]Version 2.2.9[/B]
|
[B]Version 2.2.9[/B]
|
||||||
[+] .torrent Проигрыватель: Теперь .torrent не теряется при обновлении окна Kodi
|
[+] .torrent Проигрыватель: Теперь .torrent не теряется при обновлении окна Kodi
|
||||||
[+] Проигрыватель: Улучшенная настройка сессии из cherrytorrent
|
[+] Проигрыватель: Улучшенная настройка сессии из cherrytorrent
|
||||||
|
[+] Списки Медиа: Обновление баз на русском
|
||||||
|
|
||||||
[B]Version 2.2.8[/B]
|
[B]Version 2.2.8[/B]
|
||||||
[+] Добавлен Украинский язык (by kharts)
|
[+] Добавлен Украинский язык (by kharts)
|
||||||
|
|
Loading…
Reference in New Issue