From patchwork Wed Mar 22 09:34:02 2006 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "C.Y.M" X-Patchwork-Id: 12234 Received: from c-71-197-74-6.hsd1.ca.comcast.net ([71.197.74.6] helo=nofear.bounceme.net) by www.linuxtv.org with esmtp (Exim 4.50) id 1FLzey-0005Hf-3n for vdr@linuxtv.org; Wed, 22 Mar 2006 10:29:44 +0100 Received: from [10.1.1.66] (hades [10.1.1.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by nofear.bounceme.net (Postfix) with ESMTP id 19C3573546 for ; Wed, 22 Mar 2006 01:29:40 -0800 (PST) Message-ID: <44211A0A.4000402@syphir.sytes.net> Date: Wed, 22 Mar 2006 01:34:02 -0800 From: "C.Y.M" Organization: CooLNeT User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Vdr X-Enigmail-Version: 0.94.0.0 Subject: [vdr] Cosmetic "Info" fix for Undelete-0.0.6 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: syphir@syphir.sytes.net, VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Mar 2006 09:29:44 -0000 Status: O X-Status: X-Keywords: X-UID: 8486 Since VDR-1.3.35, the Summary Key has been renamed to "Info". This is a patch for the undelete-0.0.6 plugin to keep the new naming convention. Best Regards, --- undelete-0.0.6/menuundelete.c.orig 2006-03-22 01:18:57.000000000 -0800 +++ undelete-0.0.6/menuundelete.c 2006-03-22 01:19:54.000000000 -0800 @@ -422,7 +422,7 @@ case 7: recording = GetRecording(item); #if VDRVERSNUM >= 10325 if (recording && recording->Info() && recording->Info()->Description() && *recording->Info()->Description()) - state = AddSubMenu(new cMenuText(tr("Summary"), recording->Info()->Description())); + state = AddSubMenu(new cMenuText(tr("Info"), recording->Info()->Description())); #else if (recording && recording->Summary() && *recording->Summary()) state = AddSubMenu(new cMenuText(tr("Summary"), recording->Summary())); --- undelete-0.0.6/undelete.c.orig 2006-03-22 01:20:06.000000000 -0800 +++ undelete-0.0.6/undelete.c 2006-03-22 01:23:58.000000000 -0800 @@ -282,7 +282,11 @@ FunctionHotKey[4] = tr("Display$purge all"); FunctionHotKey[5] = tr("Display$salvage all"); FunctionHotKey[6] = tr("Open"); +#if VDRVERSNUM >= 10325 + FunctionHotKey[7] = tr("Info"); +#else FunctionHotKey[7] = tr("Summary"); +#endif FunctionHotKey[8] = tr("Display$<--1"); FunctionHotKey[9] = tr("Display$2-->"); FunctionHotKey[10] = tr("Display$disp. keys");