.*?
Date: Wed, 25 Oct 2017 08:19:37 -0500
Subject: [PATCH 13/18] Update animemovil.json
---
plugin.video.alfa/channels/animemovil.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin.video.alfa/channels/animemovil.json b/plugin.video.alfa/channels/animemovil.json
index 967cc348..5c6a6300 100644
--- a/plugin.video.alfa/channels/animemovil.json
+++ b/plugin.video.alfa/channels/animemovil.json
@@ -4,7 +4,7 @@
"active": true,
"adult": false,
"language": ["*"],
- "thumbnail": "",
+ "thumbnail": "https://s1.postimg.org/92ji7stii7/animemovil1.png",
"banner": "",
"version": 1,
"changes": [
From 52344e42cc573a3c03c003e50e1838ccf1a25515 Mon Sep 17 00:00:00 2001
From: Intel1 <25161862+Intel11@users.noreply.github.com>
Date: Wed, 25 Oct 2017 10:37:17 -0500
Subject: [PATCH 14/18] pelismundo: fix filtrado de genero adulto
---
plugin.video.alfa/channels/pelismundo.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin.video.alfa/channels/pelismundo.py b/plugin.video.alfa/channels/pelismundo.py
index c87f783f..a2af9cb7 100644
--- a/plugin.video.alfa/channels/pelismundo.py
+++ b/plugin.video.alfa/channels/pelismundo.py
@@ -124,7 +124,7 @@ def filtro(item):
patron += '([^<]+)'
matches = scrapertools.find_multiple_matches(bloque, patron)
for url, title in matches:
- if "eroti33cas" in title and config.get_setting("adult_mode") == 0:
+ if "eroticas" in title and config.get_setting("adult_mode") == 0:
continue
itemlist.append(item.clone(action = "peliculas",
title = title.title(),
From df1fbe3b4791b95d29792e285c3a404d9a287261 Mon Sep 17 00:00:00 2001
From: alfa_addon_10
Date: Wed, 25 Oct 2017 19:48:10 +0200
Subject: [PATCH 15/18] fix
---
plugin.video.alfa/resources/settings.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugin.video.alfa/resources/settings.xml b/plugin.video.alfa/resources/settings.xml
index 5a11a61e..920d8500 100755
--- a/plugin.video.alfa/resources/settings.xml
+++ b/plugin.video.alfa/resources/settings.xml
@@ -51,11 +51,11 @@
-
+
-
+
From a7e18ef81318140c2739f37e6fc29e1f03047864 Mon Sep 17 00:00:00 2001
From: Intel1 <25161862+Intel11@users.noreply.github.com>
Date: Wed, 25 Oct 2017 17:34:11 -0500
Subject: [PATCH 16/18] =?UTF-8?q?allpeliculas:=20Agregado=20secci=C3=B3n?=
=?UTF-8?q?=20-=20Colecciones?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
plugin.video.alfa/channels/allpeliculas.py | 55 +++++++++++++++++++++-
1 file changed, 54 insertions(+), 1 deletion(-)
diff --git a/plugin.video.alfa/channels/allpeliculas.py b/plugin.video.alfa/channels/allpeliculas.py
index e1ea6e57..6f4ca9e1 100644
--- a/plugin.video.alfa/channels/allpeliculas.py
+++ b/plugin.video.alfa/channels/allpeliculas.py
@@ -35,12 +35,62 @@ def mainlist(item):
url= host + "movies/newmovies?page=1", extra1 = 0))
itemlist.append(item.clone(title="Por genero", action="generos", fanart="http://i.imgur.com/c3HS8kj.png",
url= host + "movies/getGanres"))
+ itemlist.append(item.clone(title="Colecciones", action="colecciones", fanart="http://i.imgur.com/c3HS8kj.png",
+ url= host))
itemlist.append(item.clone(title="", action=""))
itemlist.append(item.clone(title="Buscar...", action="search"))
return itemlist
+def colecciones(item):
+ logger.info()
+ itemlist = []
+
+ data = httptools.downloadpage(item.url).data
+ patron = 'href="(/peliculas[^"]+).*?'
+ patron += 'title_geo">([^<]+).*?'
+ patron += 'title_eng">([^<]+).*?'
+ patron += 'src="([^"]+)'
+ matches = scrapertools.find_multiple_matches(data, patron)
+ for scrapedurl, scrapedtitle, scrapedcantidad, scrapedthumbnail in matches:
+ if scrapedtitle == "LGTB" and config.get_setting("adult_mode") == 0:
+ continue
+ title = scrapedtitle.capitalize() + " (" + scrapedcantidad + ")"
+ itemlist.append(Item(channel = item.channel,
+ action = "listado_colecciones",
+ thumbnail = host + scrapedthumbnail,
+ title = title,
+ url = host + scrapedurl
+ ))
+ return itemlist
+
+
+def listado_colecciones(item):
+ logger.info()
+ itemlist = []
+ data = httptools.downloadpage(item.url).data
+ data_url = scrapertools.find_single_match(data, "data_url: '([^']+)")
+ post = "page=1"
+ data = httptools.downloadpage(host + data_url, post=post).data
+ patron = 'a href="(/peli[^"]+).*?'
+ patron += 'src="([^"]+).*?'
+ patron += 'class="c_fichas_title">([^<]+).*?'
+ patron += 'Año:.*?href="">([^<]+)'
+ matches = scrapertools.find_multiple_matches(data, patron)
+ for scrapedurl, scrapedthumbnail, scrapedtitle, scrapedyear in matches:
+ item.infoLabels['year'] = scrapedyear
+ itemlist.append(item.clone(channel = item.channel,
+ action = "findvideos",
+ contentTitle = scrapedtitle,
+ thumbnail = scrapedthumbnail,
+ title = scrapedtitle,
+ url = host + scrapedurl
+ ))
+ tmdb.set_infoLabels(itemlist)
+ return itemlist
+
+
def generos(item):
logger.info()
itemlist = []
@@ -61,6 +111,9 @@ def findvideos(item):
logger.info()
itemlist = []
data = httptools.downloadpage(item.url).data
+ if "Próximamente" in data:
+ itemlist.append(Item(channel = item.channel, title = "Próximamente"))
+ return itemlist
patron = 'data-link="([^"]+).*?'
patron += '>([^<]+)'
matches = scrapertools.find_multiple_matches(data, patron)
@@ -137,7 +190,7 @@ def lista(item):
def search(item, texto):
logger.info()
if texto != "":
- texto = texto.replace(" ", "+")
+ texto = texto.replace(" ", "%20")
item.url = host + "/movies/search/" + texto
item.extra = "busqueda"
try:
From 410d947e4b9b2ed15640aaafc745a9dfe5a3dcc0 Mon Sep 17 00:00:00 2001
From: alfa-addon
Date: Wed, 25 Oct 2017 18:53:49 -0400
Subject: [PATCH 17/18] fixed
---
plugin.video.alfa/channels/pedropolis.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/plugin.video.alfa/channels/pedropolis.py b/plugin.video.alfa/channels/pedropolis.py
index 845cba80..1aea9ae2 100644
--- a/plugin.video.alfa/channels/pedropolis.py
+++ b/plugin.video.alfa/channels/pedropolis.py
@@ -98,10 +98,11 @@ def peliculas(item):
url_next_page = ''
data = httptools.downloadpage(item.url).data
data = re.sub(r"\n|\r|\t|\(.*?\)|\s{2}| ", "", data)
+ # logger.info(data)
patron = '
.*?' # img, title
patron += '
.*?' # calidad, url
patron += '([^<]+)' # year
matches = scrapertools.find_multiple_matches(data, patron)
From d8889b1592fba166510becdf7215fe9069553eb0 Mon Sep 17 00:00:00 2001
From: alfa-addon
Date: Wed, 25 Oct 2017 18:54:03 -0400
Subject: [PATCH 18/18] v2.3.0
---
plugin.video.alfa/addon.xml | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/plugin.video.alfa/addon.xml b/plugin.video.alfa/addon.xml
index 979c4786..5587a7e9 100755
--- a/plugin.video.alfa/addon.xml
+++ b/plugin.video.alfa/addon.xml
@@ -1,5 +1,5 @@
-
+
@@ -19,12 +19,14 @@
[B]Estos son los cambios para esta versión:[/B]
[COLOR green][B]Canales agregados y arreglos[/B][/COLOR]
- » playmax » playpornx
- » canalporno » divxatope
- » flashx » verpeliculasnuevas
- » animeflv_me » hdfull
- » pelismundo » downace
- » gamovideo ¤ arreglos internos
+ » cartoonlatino » serieslan
+ » pelisplus » pedropolis
+ » flashx » cinetux
+ » animeflv_ru » streamixcloud
+ » estrenosgo » animemovil
+ » allpeliculas » pelismundo
+ ¤ arreglos internos
+ [COLOR green]Gracias a [COLOR yellow]Danielr460[/COLOR] por su colaboración en esta versión[/COLOR]
Navega con Kodi por páginas web para ver sus videos de manera fácil.
Browse web pages using Kodi