diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-05-29 16:02:12 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-05-29 16:02:12 +0200 |
commit | 40d2369b12da350f684f5364a00c3501a6c038e6 (patch) | |
tree | 26355fcd63be09e46416bd903d2d6b7936791a1a /myreplaycontrol.c | |
parent | 47a981960f1d0b6d0d8cbe3bdc15f2b9e8665731 (diff) | |
download | vdr-plugin-extrecmenu-40d2369b12da350f684f5364a00c3501a6c038e6.tar.gz vdr-plugin-extrecmenu-40d2369b12da350f684f5364a00c3501a6c038e6.tar.bz2 |
Version 0.11v0.11
- added czech translation; thanks to Vladimír Bárta
- added missing dialog for video dvds
- added more meaningful error messages
- avoid empty names and names starting with . or .. while editing
- free space display in title bar is now updated immediately
- switched off editing of recordings and directories while a cut is in progress
- switched off resume by 'Play' or 'Menu'->'Blue' for archive dvd recordings
- changed back the behaviour if replay ends; plugin has to open to unmount archive dvds
- removed setup option "While opening jump to last replayed recording"; its implemention interfers with the following one
- after renaming a recording, the selection bar now stays at this renamed list entry
- the parameters 'move' and 'rename' for the '-r'-option of VDR have now the following format: move/rename oldname newname
- fixed hopefully all problems in connection with renaming and moving directories
- plugins closes if there are no recordings - fixed
Diffstat (limited to 'myreplaycontrol.c')
-rw-r--r-- | myreplaycontrol.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/myreplaycontrol.c b/myreplaycontrol.c index 65c9dd5..bdfb123 100644 --- a/myreplaycontrol.c +++ b/myreplaycontrol.c @@ -5,16 +5,17 @@ #include <vdr/interface.h> #include <vdr/status.h> #include "myreplaycontrol.h" +#include "mymenusetup.h" -bool myReplayControl::jumprec=true; +myReplayControl::~myReplayControl() +{ + cRemote::CallPlugin("extrecmenu"); +} eOSState myReplayControl::ProcessKey(eKeys Key) { if(Key==kBack) - { - cRemote::CallPlugin("extrecmenu"); return osEnd; - } return cReplayControl::ProcessKey(Key); } |