diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | config.h | 6 | ||||
-rw-r--r-- | menu.c | 3 |
4 files changed, 13 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 7e5886d2..c1f5eb80 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -719,3 +719,6 @@ Jon Burgess <mplayer@jburgess.uklinux.net> Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de> for reporting a crash when cancelling a newly created timer + +Michael Walle <michael.walle@web.de> + for reporting a bug in channel switching after Left/Right has been pressed @@ -2253,3 +2253,8 @@ Video Disk Recorder Revision History channel (thanks to Malcolm Caldwell for reporting this one). - Some corrections to the Finnish OSD texts (thanks to Niko Tarnanen and Rolf Ahrenberg). + +2003-06-12: Version 1.2.2 + +- Fixed a bug in channel switching after Left/Right has been pressed (thanks to + Michael Walle for reporting this one). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.164 2003/06/06 12:28:20 kls Exp $ + * $Id: config.h 1.165 2003/06/12 20:37:14 kls Exp $ */ #ifndef __CONFIG_H @@ -19,8 +19,8 @@ #include "device.h" #include "tools.h" -#define VDRVERSION "1.2.1" -#define VDRVERSNUM 10201 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "1.2.2" +#define VDRVERSNUM 10202 // Version * 10000 + Major * 100 + Minor #define MAXPRIORITY 99 #define MAXLIFETIME 99 @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.256 2003/06/07 12:31:57 kls Exp $ + * $Id: menu.c 1.257 2003/06/12 16:11:32 kls Exp $ */ #include "menu.h" @@ -2783,6 +2783,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key) case kChanUp: case kChanDn|k_Repeat: case kChanDn: + group = -1; Refresh(); break; case kNone: |