From 1eb12b4973033212b39a53249d8fb452e6914a8a Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 14 Mar 2010 11:56:00 +0100 Subject: Version 1.7.14 - Fixed handling empty strings in cSource::FromString(). - Assigned the source character 'I' to "IPTV" (suggested by Rolf Ahrenberg). - Assigned the source character 'V' to "Analog Video" (suggested by Lars Hanisch). This obsoletes the ANALOGTV patch. - Added support for ATSC devices (thanks to Alex Lasnier). This obsoletes the ATSC patch. - The "Source" item in the "Edit channel" menu now wraps around the list of sources (suggested by Halim Sahin). - Fixed editing channel parameters. - The new setup option "Recording/Delete timeshift recording" controls whether a timeshift recording is automatically deleted after viewing it. This obsoletes the DELTIMESHIFTREC patch. Note that the meaning of the values for this option is different from the DELTIMESHIFTREC patch: 0 means timeshift recordings are not automatically deleted (the default behavior as in previous versions), while 1 means to ask the user whether the recording shall be deleted. - Added cChannel::IsSourceType() to test if a channel's source is of a given type. - Changed the polarization characters in cDvbSourceParam::GetOsdItem() to uppercase. - The full timer file name is now displayed if it ends with "TITLE" or "EPISODE" (pointed out by Udo Richter). - Fixed "attempt to drop wrong frame from ring buffer" when skipping +/- one minute during replay. - The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path. --- sourceparams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sourceparams.c') diff --git a/sourceparams.c b/sourceparams.c index 9a55540..0431789 100644 --- a/sourceparams.c +++ b/sourceparams.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sourceparams.c 1.1 2010/02/28 12:15:49 kls Exp $ + * $Id: sourceparams.c 1.2 2010/03/06 11:13:39 kls Exp $ */ #include "sourceparams.h" @@ -21,7 +21,7 @@ cSourceParam::cSourceParam(char Source, const char *Description) return; } SourceParams.Add(this); - if (Source != 'C' && Source != 'S' && Source != 'T') + if (!strchr("ACST", Source)) // no, it's not "ATSC" ;-) Sources.Add(new cSource(Source, Description)); dsyslog("registered source parameters for '%c - %s'", source, Description); } -- cgit v1.2.3