Merge branch 'master' into develop
This commit is contained in:
commit
f974e1a202
3 changed files with 26 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.plexkodiconnect"
|
<addon id="plugin.video.plexkodiconnect"
|
||||||
name="PlexKodiConnect"
|
name="PlexKodiConnect"
|
||||||
version="1.6.2"
|
version="1.6.3"
|
||||||
provider-name="croneter">
|
provider-name="croneter">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
version 1.6.3
|
||||||
|
- Fix UnicodeEncodeError for non ASCII filenames in playback_starter
|
||||||
|
- Cleanup playlist/playqueue string/unicode
|
||||||
|
|
||||||
version 1.6.2
|
version 1.6.2
|
||||||
- Fix Plex Web Issue, thanks @AllanMar
|
- Fix Plex Web Issue, thanks @AllanMar
|
||||||
- Fix TypeError on manually entering PMS port
|
- Fix TypeError on manually entering PMS port
|
||||||
|
|
|
@ -36,7 +36,11 @@ class Playlist_Object_Baseclase(object):
|
||||||
answ += "items: %s, " % self.items
|
answ += "items: %s, " % self.items
|
||||||
for key in self.__dict__:
|
for key in self.__dict__:
|
||||||
if key not in ("ID", 'items'):
|
if key not in ("ID", 'items'):
|
||||||
answ += '%s: %s, ' % (key, tryDecode(str(getattr(self, key))))
|
if type(getattr(self, key)) in (str, unicode):
|
||||||
|
answ += '%s: %s, ' % (key, tryEncode(getattr(self, key)))
|
||||||
|
else:
|
||||||
|
# e.g. int
|
||||||
|
answ += '%s: %s, ' % (key, str(getattr(self, key)))
|
||||||
return answ[:-2] + ">"
|
return answ[:-2] + ">"
|
||||||
|
|
||||||
def clear(self):
|
def clear(self):
|
||||||
|
@ -73,14 +77,18 @@ class Playlist_Item(object):
|
||||||
plex_UUID = None # Plex librarySectionUUID
|
plex_UUID = None # Plex librarySectionUUID
|
||||||
kodi_id = None # Kodi unique kodi id (unique only within type!)
|
kodi_id = None # Kodi unique kodi id (unique only within type!)
|
||||||
kodi_type = None # Kodi type: 'movie'
|
kodi_type = None # Kodi type: 'movie'
|
||||||
file = None # Path to the item's file
|
file = None # Path to the item's file. STRING!!
|
||||||
uri = None # Weird Plex uri path involving plex_UUID
|
uri = None # Weird Plex uri path involving plex_UUID. STRING!
|
||||||
guid = None # Weird Plex guid
|
guid = None # Weird Plex guid
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
answ = "<%s: " % (self.__class__.__name__)
|
answ = "<%s: " % (self.__class__.__name__)
|
||||||
for key in self.__dict__:
|
for key in self.__dict__:
|
||||||
answ += '%s: %s, ' % (key, tryDecode(str(getattr(self, key))))
|
if type(getattr(self, key)) in (str, unicode):
|
||||||
|
answ += '%s: %s, ' % (key, tryEncode(getattr(self, key)))
|
||||||
|
else:
|
||||||
|
# e.g. int
|
||||||
|
answ += '%s: %s, ' % (key, str(getattr(self, key)))
|
||||||
return answ[:-2] + ">"
|
return answ[:-2] + ">"
|
||||||
|
|
||||||
|
|
||||||
|
@ -258,6 +266,8 @@ def add_listitem_to_playlist(playlist, pos, listitem, kodi_id=None,
|
||||||
Adds a listitem to both the Kodi and Plex playlist at position pos [int].
|
Adds a listitem to both the Kodi and Plex playlist at position pos [int].
|
||||||
|
|
||||||
If file is not None, file will overrule kodi_id!
|
If file is not None, file will overrule kodi_id!
|
||||||
|
|
||||||
|
file: str!!
|
||||||
"""
|
"""
|
||||||
log.debug('add_listitem_to_playlist at position %s. Playlist before add: '
|
log.debug('add_listitem_to_playlist at position %s. Playlist before add: '
|
||||||
'%s' % (pos, playlist))
|
'%s' % (pos, playlist))
|
||||||
|
@ -285,6 +295,8 @@ def add_item_to_playlist(playlist, pos, kodi_id=None, kodi_type=None,
|
||||||
plex_id=None, file=None):
|
plex_id=None, file=None):
|
||||||
"""
|
"""
|
||||||
Adds an item to BOTH the Kodi and Plex playlist at position pos [int]
|
Adds an item to BOTH the Kodi and Plex playlist at position pos [int]
|
||||||
|
|
||||||
|
file: str!
|
||||||
"""
|
"""
|
||||||
log.debug('add_item_to_playlist. Playlist before adding: %s' % playlist)
|
log.debug('add_item_to_playlist. Playlist before adding: %s' % playlist)
|
||||||
kodi_item = {'id': kodi_id, 'type': kodi_type, 'file': file}
|
kodi_item = {'id': kodi_id, 'type': kodi_type, 'file': file}
|
||||||
|
@ -349,6 +361,8 @@ def add_item_to_kodi_playlist(playlist, pos, kodi_id=None, kodi_type=None,
|
||||||
Adds an item to the KODI playlist only. WILL ALSO UPDATE OUR PLAYLISTS
|
Adds an item to the KODI playlist only. WILL ALSO UPDATE OUR PLAYLISTS
|
||||||
|
|
||||||
Returns False if unsuccessful
|
Returns False if unsuccessful
|
||||||
|
|
||||||
|
file: str!
|
||||||
"""
|
"""
|
||||||
log.debug('Adding new item kodi_id: %s, kodi_type: %s, file: %s to Kodi '
|
log.debug('Adding new item kodi_id: %s, kodi_type: %s, file: %s to Kodi '
|
||||||
'only at position %s for %s'
|
'only at position %s for %s'
|
||||||
|
@ -496,7 +510,7 @@ def add_to_Kodi_playlist(playlist, xml_video_element):
|
||||||
if item.kodi_id:
|
if item.kodi_id:
|
||||||
params['item'] = {'%sid' % item.kodi_type: item.kodi_id}
|
params['item'] = {'%sid' % item.kodi_type: item.kodi_id}
|
||||||
else:
|
else:
|
||||||
params['item'] = {'file': tryEncode(item.file)}
|
params['item'] = {'file': item.file}
|
||||||
reply = JSONRPC('Playlist.Add').execute(params)
|
reply = JSONRPC('Playlist.Add').execute(params)
|
||||||
if reply.get('error') is not None:
|
if reply.get('error') is not None:
|
||||||
log.error('Could not add item %s to Kodi playlist. Error: %s'
|
log.error('Could not add item %s to Kodi playlist. Error: %s'
|
||||||
|
@ -512,6 +526,8 @@ def add_listitem_to_Kodi_playlist(playlist, pos, listitem, file,
|
||||||
Adds an xbmc listitem to the Kodi playlist.xml_video_element
|
Adds an xbmc listitem to the Kodi playlist.xml_video_element
|
||||||
|
|
||||||
WILL NOT UPDATE THE PLEX SIDE, BUT WILL UPDATE OUR PLAYLISTS
|
WILL NOT UPDATE THE PLEX SIDE, BUT WILL UPDATE OUR PLAYLISTS
|
||||||
|
|
||||||
|
file: string!
|
||||||
"""
|
"""
|
||||||
log.debug('Insert listitem at position %s for Kodi only for %s'
|
log.debug('Insert listitem at position %s for Kodi only for %s'
|
||||||
% (pos, playlist))
|
% (pos, playlist))
|
||||||
|
|
Loading…
Reference in a new issue