diff --git a/HISTORY b/HISTORY index d9ba424..cc22feb 100644 --- a/HISTORY +++ b/HISTORY @@ -46,3 +46,7 @@ VDR Plugin 'satip' Revision History - Fixed parameters of the OPTIONS command. - Added a device identication into the user agent string. - Removed unnecessary PLAY commands and header callbacks. + +2014-04-20: Version 0.3.0 + +- Increased the pid update interval to 250ms. diff --git a/po/ca_ES.po b/po/ca_ES.po index 882ce97..e5b29a6 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 0.2.3\n" +"Project-Id-Version: vdr-satip 0.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-12 04:12+0200\n" -"PO-Revision-Date: 2014-04-12 04:12+0200\n" +"POT-Creation-Date: 2014-04-20 04:20+0200\n" +"PO-Revision-Date: 2014-04-20 04:20+0200\n" "Last-Translator: Gabriel Bonich \n" "Language-Team: Catalan \n" "Language: ca\n" diff --git a/po/de_DE.po b/po/de_DE.po index c4f451b..ecc118e 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 0.2.3\n" +"Project-Id-Version: vdr-satip 0.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-12 04:12+0200\n" -"PO-Revision-Date: 2014-04-12 04:12+0200\n" +"POT-Creation-Date: 2014-04-20 04:20+0200\n" +"PO-Revision-Date: 2014-04-20 04:20+0200\n" "Last-Translator: Frank Neumann \n" "Language-Team: German \n" "Language: de\n" diff --git a/po/es_ES.po b/po/es_ES.po index 0761b02..f5ba798 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 0.2.3\n" +"Project-Id-Version: vdr-satip 0.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-12 04:12+0200\n" -"PO-Revision-Date: 2014-04-12 04:12+0200\n" +"POT-Creation-Date: 2014-04-20 04:20+0200\n" +"PO-Revision-Date: 2014-04-20 04:20+0200\n" "Last-Translator: Gabriel Bonich \n" "Language-Team: Spanish \n" "Language: es\n" diff --git a/po/fi_FI.po b/po/fi_FI.po index 3551d64..2016a41 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 0.2.3\n" +"Project-Id-Version: vdr-satip 0.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-12 04:12+0200\n" -"PO-Revision-Date: 2014-04-12 04:12+0200\n" +"POT-Creation-Date: 2014-04-20 04:20+0200\n" +"PO-Revision-Date: 2014-04-20 04:20+0200\n" "Last-Translator: Rolf Ahrenberg\n" "Language-Team: Finnish \n" "Language: fi\n" diff --git a/satip.c b/satip.c index e78b7cc..8b4f038 100644 --- a/satip.c +++ b/satip.c @@ -25,7 +25,7 @@ #define GITVERSION "" #endif - const char VERSION[] = "0.2.3" GITVERSION; + const char VERSION[] = "0.3.0" GITVERSION; static const char DESCRIPTION[] = trNOOP("SAT>IP Devices"); class cPluginSatip : public cPlugin { diff --git a/tuner.h b/tuner.h index c21535e..0246966 100644 --- a/tuner.h +++ b/tuner.h @@ -27,7 +27,7 @@ class cSatipTuner : public cThread, public cSatipTunerStatistics { private: enum { eConnectTimeoutMs = 1500, // in milliseconds - ePidUpdateIntervalMs = 100, // in milliseconds + ePidUpdateIntervalMs = 250, // in milliseconds eReConnectTimeoutMs = 5000, // in milliseconds eMinKeepAliveIntervalMs = 30000 // in milliseconds };