diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | channels.c | 4 | ||||
-rw-r--r-- | config.h | 6 |
3 files changed, 9 insertions, 5 deletions
@@ -2626,3 +2626,7 @@ Video Disk Recorder Revision History code (see man vdr(5)). Currently this is only stored and not yet used otherwise. - Added a call to cStatus::MsgOsdCurrentItem() to cMenuEditItem::SetValue() (thanks to Martin Hammerschmid). + +2004-01-25: Version 1.3.4 + +- Fixed handling language codes in case there is no audio or Dolby PID. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.c 1.20 2004/01/25 15:32:08 kls Exp $ + * $Id: channels.c 1.21 2004/01/25 16:02:13 kls Exp $ */ #include "channels.h" @@ -320,7 +320,7 @@ static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[] int i = 0; while (a[i] || i == 0) { q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]); - if (n && *n[i]) + if (a[i] && n && *n[i]) q += sprintf(q, "=%s", n[i]); i++; } @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.184 2004/01/24 10:03:55 kls Exp $ + * $Id: config.h 1.185 2004/01/25 16:08:23 kls Exp $ */ #ifndef __CONFIG_H @@ -20,8 +20,8 @@ #include "i18n.h" #include "tools.h" -#define VDRVERSION "1.3.3" -#define VDRVERSNUM 10303 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "1.3.4" +#define VDRVERSNUM 10304 // Version * 10000 + Major * 100 + Minor #define MAXPRIORITY 99 #define MAXLIFETIME 99 |