Jump to content


Photo

DM500HD IPTV channels not working after update 29/10/2016


  • Please log in to reply
33 replies to this topic

Re: DM500HD IPTV channels not working after update 29/10/2016 #21 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 30 October 2016 - 22:22

It is just a taste... I feel when it is just one line formthe if you do not do the {}.... But meanings and feelings are different......

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: DM500HD IPTV channels not working after update 29/10/2016 #22 johmer

  • Member
  • 6 posts

0
Neutral

Posted 31 October 2016 - 10:01

Sorry but I'm new to this, what does a pull request mean? Will the fix be available the next time i update my box?

 

Thanks.



Re: DM500HD IPTV channels not working after update 29/10/2016 #23 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 31 October 2016 - 12:35

Sorry but I'm new to this, what does a pull request mean? Will the fix be available the next time i update my box?

 

Thanks.

Not yet since last nightly build for dm500hd is not done (according to website) :

http://openpli.org/d...reambox/dm500hd

 

e2 update pushed after last nightly build.



Re: DM500HD IPTV channels not working after update 29/10/2016 #24 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 31 October 2016 - 12:53

It is just a taste... I feel when it is just one line formthe if you do not do the {}.... But meanings and feelings are different......

There are several ways, and many are often very personal.

 

like for example now with a single action if line the one for the params.

if(parms)
{
    parms->getSystem(system);
}

// also ok is

if(parms) parms->getSystem(system);

// or

if(parms)
    parms->getSystem(system);

// or
if(parms) {
    parms->getSystem(system);
}


Personally for a single if line I prefer

if(parms)
    parms->getSystem(system);

or this is also very good

if(parms)
{
    parms->getSystem(system);
}

When You're bussy with modifying a code all ways are ok, but if after one year or someone else review the code the last two ways are easy to read.

But the ways beneed here are very confusing then.

 

personally confusing for me I find them difficult to read after a year or so from own written code or some one else code:

if(parms) parms->getSystem(system);

//or

if(parms){
    parms->getSystem(system);
}


Re: DM500HD IPTV channels not working after update 29/10/2016 #25 Domi76

  • Senior Member
  • 120 posts

0
Neutral

Posted 31 October 2016 - 14:48

Hello,

I'm also new in the Forum and not quite sure if I'm at the right place.
I also face the same problem with VU+Duo 2.

Will it be fixed in a next update of the box ?
Thanks for your help and support.

Best regards.
Domi76

Re: DM500HD IPTV channels not working after update 29/10/2016 #26 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 31 October 2016 - 15:09

Hello,

I'm also new in the Forum and not quite sure if I'm at the right place.
I also face the same problem with VU+Duo 2.

Will it be fixed in a next update of the box ?
Thanks for your help and support.

Best regards.
Domi76

according to :

http://openpli.org/d.../vuplus/vuduo2/

 

not yet.

 

As from the moment You see last image is 31/10  or later date yes after update problem will be solved.

Just await the next full nightly ok build.



Re: DM500HD IPTV channels not working after update 29/10/2016 #27 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 31 October 2016 - 15:11

@littlesat

 

Could You also update e2 next-master to have this last patch included ?

 

Thanks.



Re: DM500HD IPTV channels not working after update 29/10/2016 #28 Domi76

  • Senior Member
  • 120 posts

0
Neutral

Posted 1 November 2016 - 07:51

Problem fixed on Vu+Duo 2 after today's update.

thanks for the support.

Best regards.



Re: DM500HD IPTV channels not working after update 29/10/2016 #29 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 1 November 2016 - 10:05

Merge is not easy... much conflicts...

 

Auto-merging lib/service/servicedvbstream.cpp
CONFLICT (content): Merge conflict in lib/service/servicedvbstream.cpp
Auto-merging lib/service/servicedvbrecord.cpp
CONFLICT (content): Merge conflict in lib/service/servicedvbrecord.cpp
Auto-merging lib/python/Screens/ScanSetup.py
CONFLICT (content): Merge conflict in lib/python/Screens/ScanSetup.py
Auto-merging lib/dvb/scan.cpp
CONFLICT (content): Merge conflict in lib/dvb/scan.cpp
Auto-merging lib/dvb/idvb.h
Auto-merging lib/dvb/dvbtime.cpp
CONFLICT (content): Merge conflict in lib/dvb/dvbtime.cpp
Auto-merging lib/dvb/atsc.h
CONFLICT (add/add): Merge conflict in lib/dvb/atsc.h
Auto-merging lib/dvb/atsc.cpp
CONFLICT (add/add): Merge conflict in lib/dvb/atsc.cpp
Automatic merge failed; fix conflicts and then commit the result.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: DM500HD IPTV channels not working after update 29/10/2016 #30 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 1 November 2016 - 10:16

Done.... hopefully I corrigated all the merge conflics correctly....


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: DM500HD IPTV channels not working after update 29/10/2016 #31 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 1 November 2016 - 13:49

Yes indeed that I was afk of. If they start development into the master while in next-master important changes had been done. Development should only be in next-master. Or guess its better to work only with master then. Changes which where only done in next-master will have to be backported to master  with a limitation to gst-1.0 or ...



Re: DM500HD IPTV channels not working after update 29/10/2016 #32 johmer

  • Member
  • 6 posts

0
Neutral

Posted 2 November 2016 - 11:07

Do you know when will the build be released for DM500?

 

Its been since the 30th that no new builds were released, usually they were releasing one almost every day.



Re: DM500HD IPTV channels not working after update 29/10/2016 #33 WanWizard

  • PLi® Core member
  • 69,930 posts

+1,788
Excellent

Posted 2 November 2016 - 13:05

@christophecvr,

 

With OpenPLi-5 we will introduce a new way of developing and a new repo structure, which will solve these issues.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: DM500HD IPTV channels not working after update 29/10/2016 #34 johmer

  • Member
  • 6 posts

0
Neutral

Posted 4 November 2016 - 22:15

Issue fixed in the last build. Thanks to all those who contributed in finding the root cause and fixing it!




8 user(s) are reading this topic

0 members, 8 guests, 0 anonymous users