diff options
author | Klaus Schmidinger <Klaus (dot) Schmidinger (at) tvdr (dot) de> | 2010-03-14 11:56:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <Klaus (dot) Schmidinger (at) tvdr (dot) de> | 2010-03-14 11:56:00 +0100 |
commit | 1eb12b4973033212b39a53249d8fb452e6914a8a (patch) | |
tree | d805f297262d6f1051b959a3d6a29c73e2be08e2 /config.h | |
parent | 5ce592e54a4aa741444afae8eb80dff47bc355fd (diff) | |
download | vdr-patch-lnbsharing-vdr-1.7.14.tar.gz vdr-patch-lnbsharing-vdr-1.7.14.tar.bz2 |
Version 1.7.14vdr-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.
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 2.22 2010/02/05 15:38:32 kls Exp $ + * $Id: config.h 2.25 2010/03/12 16:02:53 kls Exp $ */ #ifndef __CONFIG_H @@ -22,13 +22,13 @@ // VDR's own version number: -#define VDRVERSION "1.7.13" -#define VDRVERSNUM 10713 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "1.7.14" +#define VDRVERSNUM 10714 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "1.7.13" -#define APIVERSNUM 10713 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "1.7.14" +#define APIVERSNUM 10714 // Version * 10000 + Major * 100 + Minor // When loading plugins, VDR searches them by their APIVERSION, which // may be smaller than VDRVERSION in case there have been no changes to @@ -253,6 +253,7 @@ public: int UseVps; int VpsMargin; int RecordingDirs; + int FoldersInTimerMenu; int VideoDisplayFormat; int VideoFormat; int UpdateChannels; @@ -276,6 +277,7 @@ public: int FontFixSize; int MaxVideoFileSize; int SplitEditedFiles; + int DelTimeshiftRec; int MinEventTimeout, MinUserInactivity; time_t NextWakeupTime; int MultiSpeedMode; |