diff options
author | Klaus Schmidinger <Klaus (dot) Schmidinger (at) tvdr (dot) de> | 2010-01-31 15:42:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <Klaus (dot) Schmidinger (at) tvdr (dot) de> | 2010-01-31 15:42:00 +0100 |
commit | 09a17d56e2a3f975a0467e8da4ca26c946b6ccf7 (patch) | |
tree | 4ca95499f117bf8bf0a51149bb85493d93ee111e /vdr.5 | |
parent | 939081e274d0a9868e5ba9a7951666ad508afb96 (diff) | |
download | vdr-patch-lnbsharing-09a17d56e2a3f975a0467e8da4ca26c946b6ccf7.tar.gz vdr-patch-lnbsharing-09a17d56e2a3f975a0467e8da4ca26c946b6ccf7.tar.bz2 |
Version 1.7.12vdr-1.7.12
- Changed the EVCONTENTMASK_* macros to enums and changed "mask" to "group".
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
- The "Edit timer" menu can now set the folder for the recording from a list of
folders stored in "folders.conf".
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- If svdrphosts.conf contains only the address of the local host, the SVDRP port
is opened only for the local host (thanks to Manuel Reimer).
- Renamed 'runvdr' to 'runvdr.template' and no longer copying it to the BINDIR
in 'make install' (thanks to Martin Dauskardt).
- Added plain text error messages to log entries from cOsd::SetAreas() (suggested
by Rolf Ahrenberg).
- cPalette::ClosestColor() now treats fully transparent colors as "equal"; improved
cDvbSpuBitmap::getMinBpp() (thanks to Matthieu Castet and Johann Friedrichs).
- The new setup option "Miscellaneous/Channels wrap" controls whether the current
channel wraps around the beginning or end of the channel list when zapping (thanks
to Matti Lehtimäki).
- Fixed determining the frame duration on channels where the PTS deltas jitter by
+/-1 around 1800.
- The PCR pid in generated PMTs is now set to the channel's PCR pid again.
- Fixed determining the frame duration on channels where the PTS deltas jitter by
+/-1 around 3600.
- The PCR pid is now recorded for channels where this is different from the video
PID. To facilitate this, the interfaces of cTransfer, cTransferControl, cRecorder
and cReceiver have been modified, so that the PIDs are no longer given in separate
parameters, but rather the whole channel is handed down for processing. The old
constructor of cReceiver is still available, but it is recommended to plugin authors
that they switch to the new interface as soon as possible.
When replaying such a recording, the PCR packets are sent to PlayTsVideo()
- The files "commands.conf" and "reccmd.conf" can now contain nested lists of
commands. See vdr.5 for information about the new file format.
Diffstat (limited to 'vdr.5')
-rw-r--r-- | vdr.5 | 60 |
1 files changed, 59 insertions, 1 deletions
@@ -8,7 +8,7 @@ .\" License as specified in the file COPYING that comes with the .\" vdr distribution. .\" -.\" $Id: vdr.5 2.11 2010/01/03 13:37:07 kls Exp $ +.\" $Id: vdr.5 2.13 2010/01/31 12:59:50 kls Exp $ .\" .TH vdr 5 "10 Feb 2008" "1.6" "Video Disk Recorder Files" .SH NAME @@ -489,6 +489,46 @@ Note that the color keys will only execute their macro function in "normal viewing" mode (i.e. when no other menu or player is active). The \fIUser1\fR...\fIUser9\fR keys will always execute their macro function. There may be up to 15 keys in such a key sequence. +.SS FOLDERS +The file \fIfolders.conf\fR contains the definitions of folders that can be used +in the "Edit timer" menu. Each line contains one folder definition. Leading whitespace +and everything after and including a '#' is ignored. A line ending with '{' +defines a sub folder (i.e. a folder that contains other folders), and a line +consisting of only '}' ends the definition of a sub folder. + +Example: + +Daily { +.br + News +.br + Soaps +.br + } +.br +Archive { +.br + Movies +.br + Sports +.br + Sci-Fi { +.br + Star Trek +.br + U.F.O. +.br + } +.br + } +.br +Comedy +.br +Science + +Note that these folder definitions are only used to set the file name under which +a timer will store its recording. Changing these definitions in any way has no +effect on existing timers or recordings. .SS COMMANDS The file \fIcommands.conf\fR contains the definitions of commands that can be executed from the \fBvdr\fR main menu's "Commands" option. @@ -506,6 +546,24 @@ to make sure they are not executed inadvertently. Everything following (and including) a '#' character is considered to be comment. +You can have nested layers of command menus by surrounding a sequence of +commands with '{'...'}' and giving it a title, as in + +My Commands { +.br + First list { + Do something: some command + Do something else: another command + } + Second list { + Even more: yet another command + So much more: and yet another one + } +.br + } + +Command lists can be nested to any depth. + By default the menu entries in the "Commands" menu will be numbered '1'...'9' to make them selectable by pressing the corresponding number key. If you want to use your own numbering scheme (maybe to skip certain numbers), just precede |