Updated for vdr-1.7.16.

This commit is contained in:
Rolf Ahrenberg 2010-09-19 23:19:33 +03:00
parent 23a8a72c38
commit b8c7fdddb7
3 changed files with 8 additions and 4 deletions

View File

@ -402,3 +402,7 @@ VDR Plugin 'femon' Revision History
- Added preliminary support for LATM.
- Updated Italian translation (Thanks to Diego Pierotto).
- Fixed a crash in femon service (Thanks to Wolfgang Astleitner).
2010-xx-xx: Version 1.7.9
- Updated for vdr-1.7.16.

View File

@ -14,11 +14,11 @@
#include "femonservice.h"
#include "femontools.h"
#if defined(APIVERSNUM) && APIVERSNUM < 10713
#error "VDR-1.7.13 API version or greater is required!"
#if defined(APIVERSNUM) && APIVERSNUM < 10716
#error "VDR-1.7.16 API version or greater is required!"
#endif
static const char VERSION[] = "1.7.8";
static const char VERSION[] = "1.7.9";
static const char DESCRIPTION[] = trNOOP("DVB Signal Information Monitor (OSD)");
static const char MAINMENUENTRY[] = trNOOP("Signal Information");

View File

@ -24,7 +24,7 @@ cFemonConfig::cFemonConfig(void)
analyzestream = 1;
calcinterval = 20;
usesvdrp = 0;
svdrpport = 2001;
svdrpport = 6419;
strncpy(svdrpip, "0.0.0.0", sizeof(svdrpip));
}