VVVVID Thumbs & Settings
This commit is contained in:
@@ -4,8 +4,8 @@
|
|||||||
"active": true,
|
"active": true,
|
||||||
"adult": false,
|
"adult": false,
|
||||||
"language": ["ita","vos"],
|
"language": ["ita","vos"],
|
||||||
"thumbnail": "",
|
"thumbnail": "vvvvid.png",
|
||||||
"bannermenu": "",
|
"banner": "vvvvid.png",
|
||||||
"categories": ["anime","tvshow","movie","vos"],
|
"categories": ["anime","tvshow","movie","vos"],
|
||||||
"settings": []
|
"settings": []
|
||||||
}
|
}
|
||||||
@@ -74,6 +74,21 @@ def search(item, text):
|
|||||||
itemlist = peliculas(item)
|
itemlist = peliculas(item)
|
||||||
return itemlist
|
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):
|
def peliculas(item):
|
||||||
itemlist = []
|
itemlist = []
|
||||||
if not item.args:
|
if not item.args:
|
||||||
|
|||||||
Reference in New Issue
Block a user