summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY5
-rw-r--r--channels.h4
-rw-r--r--config.h10
4 files changed, 12 insertions, 8 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 098d2fbb..8c48c08f 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -2753,6 +2753,7 @@ Winfried Köhler <w_koehl@gmx.de>
for reporting a necessary fix in the description of cReceiver in PLUGINS.html,
regarding detaching a receiver from its device before deleting it
for fixing some copy&paste errors in PLUGINS.html
+ for fixing the size of cChannel::dtypes[]
Hans-Werner Hilse <hilse@web.de>
for adding the command line option --userdump to enable core dumps in case VDR
diff --git a/HISTORY b/HISTORY
index c020b9cf..f45d4520 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9453,7 +9453,10 @@ Video Disk Recorder Revision History
The version numbers (both VDRVERSNUM and APIVERSNUM) have been bumped to 2.4.2, so
that plugins can detect the presence of the new cControl::Control().
-2020-06-03:
+2020-06-03: Version 2.4.3
- Added a missing '-D' to the 'plugins' target of the Makefile (thanks to Johann
Friedrichs).
+- Fixed the size of cChannel::dtypes[] (thanks to Winfried Köhler).
+ The version numbers (both VDRVERSNUM and APIVERSNUM) have been bumped to 2.4.3 to
+ indicate this change.
diff --git a/channels.h b/channels.h
index d368b558..de99830f 100644
--- a/channels.h
+++ b/channels.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.h 4.4 2020/04/11 09:22:05 kls Exp $
+ * $Id: channels.h 4.5 2020/06/10 14:00:36 kls Exp $
*/
#ifndef __CHANNELS_H
@@ -105,7 +105,7 @@ private:
int atypes[MAXAPIDS + 1]; // list is zero-terminated
char alangs[MAXAPIDS][MAXLANGCODE2];
int dpids[MAXDPIDS + 1]; // list is zero-terminated
- int dtypes[MAXAPIDS + 1]; // list is zero-terminated
+ int dtypes[MAXDPIDS + 1]; // list is zero-terminated
char dlangs[MAXDPIDS][MAXLANGCODE2];
int spids[MAXSPIDS + 1]; // list is zero-terminated
char slangs[MAXSPIDS][MAXLANGCODE2];
diff --git a/config.h b/config.h
index 72be5231..e0f5a750 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 4.17 2020/05/18 16:47:29 kls Exp $
+ * $Id: config.h 4.18 2020/06/10 14:00:36 kls Exp $
*/
#ifndef __CONFIG_H
@@ -22,13 +22,13 @@
// VDR's own version number:
-#define VDRVERSION "2.4.2"
-#define VDRVERSNUM 20402 // Version * 10000 + Major * 100 + Minor
+#define VDRVERSION "2.4.3"
+#define VDRVERSNUM 20403 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number:
-#define APIVERSION "2.4.2"
-#define APIVERSNUM 20402 // Version * 10000 + Major * 100 + Minor
+#define APIVERSION "2.4.3"
+#define APIVERSNUM 20403 // 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