diff --git a/HISTORY b/HISTORY index c2af5dd..0166834 100644 --- a/HISTORY +++ b/HISTORY @@ -144,3 +144,15 @@ VDR Plugin 'satip' Revision History - Reset the RTSP connection after any failed connect. - Added tweaks for minisatip and Schwaiger MS41IP. - Updated for vdr-2.3.1 (Thanks to Klaus Schmidinger). + +2016-12-18: Version 2.2.4 + +- Updated German translation (Thanks to Frank Neumann). +- Fixed Panasonic CXW804 support (Thanks to Tobias Grimm). +- Fixed C++11 support (Thanks to Tobias Grimm). +- Fixed server assigment with source validation (Thanks to Patrick Boettcher). +- Added configurable RTP/RTCP ports (Thanks to chriszero). +- Added support for X-SATIP-RTSP-Port header. +- Added multicast and RTP-over-TCP support. +- Added support for activating/deactivating server on-the-fly. +- Extended command-line parameters for setting server quirks. diff --git a/po/ca_ES.po b/po/ca_ES.po index f9ad8fd..5627c62 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 2.2.3\n" +"Project-Id-Version: vdr-satip 2.2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-26 04:26+0300\n" -"PO-Revision-Date: 2015-04-26 04:26+0300\n" +"POT-Creation-Date: 2016-12-18 12:18+0200\n" +"PO-Revision-Date: 2016-12-18 12:18+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 5b995fc..e7c66fd 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 2.2.3\n" +"Project-Id-Version: vdr-satip 2.2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-26 04:26+0300\n" -"PO-Revision-Date: 2015-04-26 04:26+0300\n" +"POT-Creation-Date: 2016-12-18 12:18+0200\n" +"PO-Revision-Date: 2016-12-18 12:18+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 fecbeb4..39353be 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 2.2.3\n" +"Project-Id-Version: vdr-satip 2.2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-26 04:26+0300\n" -"PO-Revision-Date: 2015-04-26 04:26+0300\n" +"POT-Creation-Date: 2016-12-18 12:18+0200\n" +"PO-Revision-Date: 2016-12-18 12:18+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 9ef3c73..aa8e173 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 2.2.3\n" +"Project-Id-Version: vdr-satip 2.2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-26 04:26+0300\n" -"PO-Revision-Date: 2015-04-26 04:26+0300\n" +"POT-Creation-Date: 2016-12-18 12:18+0200\n" +"PO-Revision-Date: 2016-12-18 12:18+0200\n" "Last-Translator: Rolf Ahrenberg\n" "Language-Team: Finnish \n" "Language: fi\n" diff --git a/satip.c b/satip.c index 4def128..089c3e2 100644 --- a/satip.c +++ b/satip.c @@ -27,7 +27,7 @@ #define GITVERSION "" #endif - const char VERSION[] = "2.2.3" GITVERSION; + const char VERSION[] = "2.2.4" GITVERSION; static const char DESCRIPTION[] = trNOOP("SAT>IP Devices"); class cPluginSatip : public cPlugin {