From patchwork Sat Sep 17 15:20:20 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Darren Salt X-Patchwork-Id: 12032 Received: from anchor-post-31.mail.demon.net ([194.217.242.89]) by www.linuxtv.org with esmtp (Exim 4.34) id 1EGeyR-0005PA-Qi for vdr@linuxtv.org; Sat, 17 Sep 2005 17:51:31 +0200 Received: from youmustbejoking.demon.co.uk ([212.228.127.8] helo=pentagram.youmustbejoking.demon.co.uk) by anchor-post-31.mail.demon.net with esmtp (Exim 4.42) id 1EGesm-000KA0-5Y for vdr@linuxtv.org; Sat, 17 Sep 2005 15:45:42 +0000 Received: from [192.168.0.2] (helo=riscpc) by pentagram.youmustbejoking.demon.co.uk with esmtp (Exim 4.50) id 1EGeyM-0001Cf-0o for vdr@linuxtv.org; Sat, 17 Sep 2005 16:51:26 +0100 Date: Sat, 17 Sep 2005 16:20:20 +0100 From: Darren Salt To: vdr@linuxtv.org Subject: Re: [vdr] [ANNOUNCE] vdr-epgsearch-0.9.7 Message-ID: <4DABDDCE8F%linux@youmustbejoking.demon.co.uk> References: <431AF6A1.26341.1195AB@localhost> In-Reply-To: <431AF6A1.26341.1195AB@localhost> User-Agent: Messenger-Pro/3.29 (MsgServe/3.10) (RISC-OS/4.02) POPstar/2.06-ds.5 X-Editor: Zap 1.47 (06 Aug 2005) [TEST], ZapEmail 0.28.3 (25 Mar 2005) (32) X-SDate: Sat, 4400 Sep 1993 16:20:20 +0100 X-Message-Flag: Outlook Express is broken. Upgrade to mail(1). MIME-Version: 1.0 X-SA-Exim-Connect-IP: 192.168.0.2 X-SA-Exim-Mail-From: linux@youmustbejoking.demon.co.uk X-SA-Exim-Scanned: No (on pentagram.youmustbejoking.demon.co.uk); SAEximRunCond expanded to false X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2005 15:51:31 -0000 Status: O X-Status: X-Keywords: X-UID: 5042 I demand that cwieninger@gmx.de may or may not have written... > here's a new release of the epgsearch plugin. A bit early this time, but > there were two bugs, that had to be fixed. > You can find it here: > http://people.freenet.de/cwieninger/html/vdr-epg-search__english_.html [snip] There's a bug in the schedule display wrt channel selection via the green and yellow buttons if the currently displayed channel doesn't have any EPG data: it's impossible to use the buttons to select either the previous and/or next channel (there's a dependency on how you accessed the schedule for that channel). Here, E4+1 has no EPG data and will trigger this bug. --- vdr-epgsearch-0.9.7/menu_main.c~ 2005-09-17 16:33:26.000000000 +0100 +++ vdr-epgsearch-0.9.7/menu_main.c 2005-09-17 16:33:26.000000000 +0100 @@ -70,9 +70,9 @@ if (schedules) { const cSchedule *Schedule = schedules->GetSchedule(Channel->GetChannelID()); + currentChannel = Channel->Number(); if (Schedule) { - currentChannel = Channel->Number(); const cEvent *PresentEvent = Schedule->GetPresentEvent(currentChannel == cDevice::CurrentChannel()); time_t now; if (shiftTime == 0)