Merge remote-tracking branch 'origin/master'

This commit is contained in:
mac12m99
2021-09-19 11:36:13 +02:00
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.kod" name="Kodi on Demand BETA" version="1.7" provider-name="KoD Team"> <addon id="plugin.video.kod" name="Kodi on Demand BETA" version="1.7.1" provider-name="KoD Team">
<requires> <requires>
<!-- <import addon="script.module.libtorrent" optional="true"/> --> <!-- <import addon="script.module.libtorrent" optional="true"/> -->
<import addon="metadata.themoviedb.org"/> <import addon="metadata.themoviedb.org"/>
@@ -28,9 +28,9 @@
<screenshot>resources/media/screenshot-2.png</screenshot> <screenshot>resources/media/screenshot-2.png</screenshot>
<screenshot>resources/media/screenshot-3.png</screenshot> <screenshot>resources/media/screenshot-3.png</screenshot>
</assets> </assets>
<news>- Aggiunto menu globale "opzioni di KoD" <news>- aggiunta opzione "vai a pagina" nel menu contestuale dell'item "successivo>"
- Aggiunto canale tapmovie e server annessi - riscritti canali mediaset e raiplay
- Notifica quando il tipo di vista viene salvata (con indicazione del tipo di contenuto) - migliorie varie, in particolare nell'ordinamento dei server
</news> </news>
<description lang="it">Naviga velocemente sul web e guarda i contenuti presenti</description> <description lang="it">Naviga velocemente sul web e guarda i contenuti presenti</description>
<disclaimer>[COLOR red]The owners and submitters to this addon do not host or distribute any of the content displayed by these addons nor do they have any affiliation with the content providers.[/COLOR] <disclaimer>[COLOR red]The owners and submitters to this addon do not host or distribute any of the content displayed by these addons nor do they have any affiliation with the content providers.[/COLOR]
+1 -1
View File
@@ -23,7 +23,7 @@
"filmigratis": "https://filmigratis.org", "filmigratis": "https://filmigratis.org",
"guardaseriecam": "https://guardaserie.cam", "guardaseriecam": "https://guardaserie.cam",
"guardaserieclick": "https://www.guardaserie.builders", "guardaserieclick": "https://www.guardaserie.builders",
"guardaserieicu": "https://guardaserie.cfd", "guardaserieicu": "https://guardaserie.wales",
"hd4me": "https://hd4me.net", "hd4me": "https://hd4me.net",
"ilcorsaronero": "https://ilcorsaronero.link", "ilcorsaronero": "https://ilcorsaronero.link",
"ilgeniodellostreaming": "https://ilgeniodellostreaming.wtf", "ilgeniodellostreaming": "https://ilgeniodellostreaming.wtf",
+1 -1
View File
@@ -24,5 +24,5 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
global data, real_url global data, real_url
post = {k: v for k, v in scrapertools.find_multiple_matches(data, "name='([^']+)' value='([^']*)'")} post = {k: v for k, v in scrapertools.find_multiple_matches(data, "name='([^']+)' value='([^']*)'")}
time.sleep(2.5) time.sleep(2.5)
link = support.match(real_url, post=post, patron='sources:\s*\["([^"]+)').match link = support.match(real_url, post=post, patron='sources:\s*\["([^"]+)').match.replace('https:', 'http:')
return [[".mp4" + " [deltabit]", link]] return [[".mp4" + " [deltabit]", link]]