Skip to content

Commit

Permalink
Add additional reseller
Browse files Browse the repository at this point in the history
current list:

 - netplus.tv
 - mobiltv.quickline.com
 - tvplus.m-net.de
 - player.waly.tv
 - meinewelt.cc
 - bbv-tv.net
 - vtxtv.ch
 - myvisiontv.ch
 - iptv.glattvision.ch
 - saktv.ch
 - nettv.netcologne.de
 - tvonline.ewe.de
  • Loading branch information
rbuehlma committed Sep 27, 2017
1 parent 12123dd commit 4ae4837
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.zattoo/addon.xml.in
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="pvr.zattoo"
version="18.0.16"
version="18.0.17"
name="Zattoo PVR Client"
provider-name="trummerjo,rbuehlma">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
14 changes: 14 additions & 0 deletions pvr.zattoo/changelog.txt
@@ -1,3 +1,17 @@
v18.0.17
- Add some reseller
-- netplus.tv
-- mobiltv.quickline.com
-- tvplus.m-net.de
-- player.waly.tv
-- meinewelt.cc
-- bbv-tv.net
-- vtxtv.ch
-- myvisiontv.ch
-- iptv.glattvision.ch
-- saktv.ch
-- nettv.netcologne.de
-- tvonline.ewe.de
v18.0.16
- Make loading EPG multithreaded
v18.0.15
Expand Down
2 changes: 1 addition & 1 deletion pvr.zattoo/resources/settings.xml
Expand Up @@ -5,5 +5,5 @@
<setting id="favoritesonly" type="bool" label="37103" default="false" />
<setting id="alternativeepgservice" type="bool" label="37104" default="false" />
<setting id="streamtype" type="enum" label="37105" default = "0" values="dash|hls" />
<setting id="provider" type="enum" label="37106" default = "0" values="Zattoo|Netplus|Quickline" />
<setting id="provider" type="enum" label="37106" default = "0" values="Zattoo|Netplus|Quickline|m-net|WALY.TV|meinewelt.cc|BBV-tv.net|VTXtv.ch|myvisiontv.ch|GLATTvision.ch|SAKtv.ch|NetCologne|EWE.de" />
</settings>
30 changes: 30 additions & 0 deletions src/ZatData.cpp
Expand Up @@ -516,6 +516,36 @@ ZatData::ZatData(string u, string p, bool favoritesOnly,
case 2:
providerUrl = "https://mobiltv.quickline.com";
break;
case 3:
providerUrl = "https://tvplus.m-net.de";
break;
case 4:
providerUrl = "https://player.waly.tv";
break;
case 5:
providerUrl = "https://www.meinewelt.cc";
break;
case 6:
providerUrl = "https://www.bbv-tv.net";
break;
case 7:
providerUrl = "https://www.vtxtv.ch";
break;
case 8:
providerUrl = "https://www.myvisiontv.ch";
break;
case 9:
providerUrl = "https://iptv.glattvision.ch";
break;
case 10:
providerUrl = "https://www.saktv.ch";
break;
case 11:
providerUrl = "https://nettv.netcologne.de";
break;
case 12:
providerUrl = "https://tvonline.ewe.de";
break;
default:
providerUrl = "https://zattoo.com";
}
Expand Down

0 comments on commit 4ae4837

Please sign in to comment.