Hi,
I am using vdr-epgsearch-0.9.9.tgz, but with the new VDR version it is not compiling anymore. Is there a new version available?
Best regards, Matthias
have a look here:
http://www.vdr-wiki.de/wiki/index.php/Epgsearch-plugin
regards,
frank
On Saturday 04 February 2006 08:39, Matthias Fechner wrote:
Hi,
I am using vdr-epgsearch-0.9.9.tgz, but with the new VDR version it is not compiling anymore. Is there a new version available?
Best regards, Matthias
vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Hello Frank,
* Frank Enderle frank.enderle@gmx.net [04-02-06 09:55]:
I tried now http://people.freenet.de/cwieninger/vdr-epgsearch-0.9.10.tgz
but the problem persists.
Best regards, Matthias
On Saturday 04 February 2006 10:41, Matthias Fechner wrote:
Hello Frank,
- Frank Enderle frank.enderle@gmx.net [04-02-06 09:55]:
I tried now http://people.freenet.de/cwieninger/vdr-epgsearch-0.9.10.tgz
but the problem persists.
If your compilation problem involves line 374 of menu_main.c in the plugin, try changing it from:
const cEvent *PresentEvent = Schedule->GetPresentEvent(currentChannel == cDevice::CurrentChannel());
to:
const cEvent *PresentEvent = Schedule->GetPresentEvent();
Worked for me! GetPresentEvent no longer takes any arguments and always takes the running status into account.
Cheers,
Laz
On Saturday 04 February 2006 11:25, Laz wrote:
On Saturday 04 February 2006 10:41, Matthias Fechner wrote:
Hello Frank,
- Frank Enderle frank.enderle@gmx.net [04-02-06 09:55]:
I tried now http://people.freenet.de/cwieninger/vdr-epgsearch-0.9.10.tgz
but the problem persists.
If your compilation problem involves line 374 of menu_main.c in the plugin, try changing it from:
const cEvent *PresentEvent = Schedule->GetPresentEvent(currentChannel == cDevice::CurrentChannel());
to:
const cEvent *PresentEvent = Schedule->GetPresentEvent();
AGGGGGGGGGG!!!! Line 64!!
Someone has just posted a patch which does the same.
Cheers,
Laz
Hello Laz and Mike,
* Laz laz@club-burniston.co.uk [04-02-06 11:25]:
const cEvent *PresentEvent = Schedule->GetPresentEvent(currentChannel == cDevice::CurrentChannel());
to:
const cEvent *PresentEvent = Schedule->GetPresentEvent();
thx a lot, that fixes my problem!
Best regards, Matthias
Hello,
On 2006-02-04 at 11:41 CET Matthias Fechner wrote:
I tried now http://people.freenet.de/cwieninger/vdr-epgsearch-0.9.10.tgz
but the problem persists.
Try this patch:
--- menu_main.c.org Fri Jan 13 16:51:41 2006 +++ menu_main.c Sun Jan 29 17:00:58 2006 @@ -61,7 +61,7 @@ currentChannel = Channel->Number(); if (Schedule) { - const cEvent *PresentEvent = Schedule->GetPresentEvent(currentChannel == cDevice::CurrentChannel()); + const cEvent *PresentEvent = Schedule->GetPresentEvent(); time_t now; if (shiftTime == 0) now = time(NULL) - Setup.EPGLinger * 60;
Mike