VVVVID Thumbs & Settings
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
"active": true,
|
||||
"adult": false,
|
||||
"language": ["ita","vos"],
|
||||
"thumbnail": "",
|
||||
"bannermenu": "",
|
||||
"thumbnail": "vvvvid.png",
|
||||
"banner": "vvvvid.png",
|
||||
"categories": ["anime","tvshow","movie","vos"],
|
||||
"settings": []
|
||||
}
|
||||
@@ -74,6 +74,21 @@ def search(item, text):
|
||||
itemlist = peliculas(item)
|
||||
return itemlist
|
||||
|
||||
def newest(categoria):
|
||||
item = Item()
|
||||
item.args = 'channel/10007/last/'
|
||||
if categoria == 'peliculas':
|
||||
item.contentType = 'movie'
|
||||
item.url = host + 'film/'
|
||||
if categoria == 'series':
|
||||
item.contentType = 'tvshow'
|
||||
item.url = host + 'series/'
|
||||
if categoria == 'anime':
|
||||
item.contentType = 'tvshow'
|
||||
item.url = host + 'anime/'
|
||||
return peliculas(item)
|
||||
|
||||
|
||||
def peliculas(item):
|
||||
itemlist = []
|
||||
if not item.args:
|
||||
|
||||
Reference in New Issue
Block a user