From patchwork Wed Oct 3 08:36:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: hondansx@gmx.de X-Patchwork-Id: 14860 Received: from localhost ([127.0.0.1] helo=www.linuxtv.org) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1TJKS4-00082w-Me; Wed, 03 Oct 2012 10:37:08 +0200 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1TJKRd-00082c-Ff for vdr@linuxtv.org; Wed, 03 Oct 2012 10:37:06 +0200 X-tubIT-Incoming-IP: 213.165.64.23 Received: from mailout-de.gmx.net ([213.165.64.23]) by mail.tu-berlin.de (exim-4.75/mailfrontend-2) with smtp for id 1TJKRd-0006rR-GY; Wed, 03 Oct 2012 10:36:41 +0200 Received: (qmail invoked by alias); 03 Oct 2012 08:36:40 -0000 Received: from p54A3FA94.dip.t-dialin.net (EHLO yaris.yaris.dyndns.org) [84.163.250.148] by mail.gmx.net (mp037) with SMTP; 03 Oct 2012 10:36:40 +0200 X-Authenticated: #722319 X-Provags-ID: V01U2FsdGVkX18At+RG1+UAbziEzbcWEPWb5QonsMcorU1FJHqnWg JgYC9RPCuET1R5 Received: from aspire4935G (aspire4935G.yaris.dyndns.org [192.168.25.14]) by yaris.yaris.dyndns.org (Postfix) with SMTP id 467A079DB8 for ; Wed, 3 Oct 2012 10:36:38 +0200 (CEST) Date: Wed, 3 Oct 2012 10:36:37 +0200 From: AlexW To: "VDR Mailing List" Message-ID: <20121003103637.5ecb55c3@aspire4935G> Mime-Version: 1.0 X-Y-GMX-Trusted: 0 X-PMX-Version: 5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2012.10.3.82416 X-PMX-Spam: Gauge=IIIIIIIII, Probability=9%, Report=' FROM_NAME_ONE_WORD 0.05, HTML_00_01 0.05, HTML_00_10 0.05, MIME_LOWER_CASE 0.05, MIME_TEXT_ONLY_MP_MIXED 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1000_LESS 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, BODY_SIZE_900_999 0, INVALID_MSGID_NO_FQDN 0, NO_URI_FOUND 0, SMALL_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_MIXED 0, __FRAUD_WEBMAIL 0, __FRAUD_WEBMAIL_FROM 0, __HAS_FROM 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __PHISH_SPEAR_STRUCTURE_1 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __TO_MALFORMED_2 0' X-LSpam-Score: -1.1 (-) X-LSpam-Report: No, score=-1.1 required=5.0 tests=BAYES_00=-1.9, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RDNS_NONE=0.793 autolearn=no Subject: [vdr] [PATCH] vdr-1.7.31 & small improvement for last viewed recording X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: vdr-bounces@linuxtv.org Errors-To: vdr-bounces@linuxtv.org Hi, attached is a small patch which I find very useful. It extends the (Re)PlayButton. If no last viewed recording was set (mostly after restart of vdr) and you press the Play Button all Recordings will be shown. Would be nice, if it find's a way into the main vdr. BR, Alex --- vdr.c.orig 2012-09-24 14:43:04.000000000 +0200 +++ vdr.c 2012-10-03 10:11:26.775120496 +0200 @@ -1238,6 +1238,9 @@ cControl::Shutdown(); cControl::Launch(new cReplayControl); } + else { + DirectMainFunction(osRecordings); + } break; default: break; }