minor
This commit is contained in:
parent
290fa837b3
commit
2482e56fdc
20
main.py
20
main.py
|
@ -525,7 +525,6 @@ def list_tracks(params):
|
||||||
# tracknumber += 1
|
# tracknumber += 1
|
||||||
# items[item]['tracknumber'] = tracknumber
|
# items[item]['tracknumber'] = tracknumber
|
||||||
|
|
||||||
# Starred
|
|
||||||
# Starred
|
# Starred
|
||||||
elif menu_id == 'tracks_starred':
|
elif menu_id == 'tracks_starred':
|
||||||
generator = connection.walk_tracks_starred()
|
generator = connection.walk_tracks_starred()
|
||||||
|
@ -571,12 +570,12 @@ def list_tracks(params):
|
||||||
|
|
||||||
return plugin.create_listing(
|
return plugin.create_listing(
|
||||||
listing,
|
listing,
|
||||||
#succeeded = True, #if False Kodi won’t open a new listing and stays on the current level.
|
#succeeded = True, #if False Kodi won’t open a new listing and stays on the current level.
|
||||||
#update_listing = False, #if True, Kodi won’t open a sub-listing but refresh the current one.
|
#update_listing = False, #if True, Kodi won’t open a sub-listing but refresh the current one.
|
||||||
#cache_to_disk = True, #cache this view to disk.
|
#cache_to_disk = True, #cache this view to disk.
|
||||||
sort_methods=get_sort_methods('tracks',params),
|
sort_methods= get_sort_methods('tracks',params),
|
||||||
#view_mode = None, #a numeric code for a skin view mode. View mode codes are different in different skins except for 50 (basic listing).
|
#view_mode = None, #a numeric code for a skin view mode. View mode codes are different in different skins except for 50 (basic listing).
|
||||||
content = 'songs' #string - current plugin content, e.g. ‘movies’ or ‘episodes’.
|
content = 'songs' #string - current plugin content, e.g. ‘movies’ or ‘episodes’.
|
||||||
)
|
)
|
||||||
|
|
||||||
#stars (persistent) cache is used to know what context action (star/unstar) we should display.
|
#stars (persistent) cache is used to know what context action (star/unstar) we should display.
|
||||||
|
@ -821,9 +820,6 @@ def get_entry_album(item, params):
|
||||||
|
|
||||||
return entry
|
return entry
|
||||||
|
|
||||||
#sort method for list types
|
|
||||||
#https://github.com/xbmc/xbmc/blob/master/xbmc/SortFileItem.h
|
|
||||||
#TO FIX _DATE or _DATEADDED ?
|
|
||||||
def get_entry_track(item,params):
|
def get_entry_track(item,params):
|
||||||
|
|
||||||
menu_id = params.get('menu_id')
|
menu_id = params.get('menu_id')
|
||||||
|
@ -897,11 +893,15 @@ def get_entry_album_label(item,hide_artist = False):
|
||||||
|
|
||||||
|
|
||||||
def get_sort_methods(type,params):
|
def get_sort_methods(type,params):
|
||||||
|
#sort method for list types
|
||||||
|
#https://github.com/xbmc/xbmc/blob/master/xbmc/SortFileItem.h
|
||||||
|
#TO FIX _DATE or _DATEADDED ?
|
||||||
|
|
||||||
#TO FIX
|
#TO FIX
|
||||||
#actually it seems possible to 'restore' the default sorting (by labels)
|
#actually it seems possible to 'restore' the default sorting (by labels)
|
||||||
#so our starred items don't get colorized.
|
#so our starred items don't get colorized.
|
||||||
#so do not sort stuff
|
#so do not sort stuff
|
||||||
|
#see http://forum.kodi.tv/showthread.php?tid=293037
|
||||||
return []
|
return []
|
||||||
|
|
||||||
sortable = [
|
sortable = [
|
||||||
|
|
Loading…
Reference in New Issue