diff --git a/HISTORY b/HISTORY index 0a1a70b..ee06bd3 100644 --- a/HISTORY +++ b/HISTORY @@ -108,3 +108,9 @@ VDR Plugin 'satip' Revision History - Updated Spanish and Catalan translations (Thanks to Gabriel Bonich). - Updated German translations (Thanks to Frank Neumann). + +2015-01-25: Version 2.0.0 + +- Fixed memory deallocation errors. +- Cleaned up all scan-build warnings. +- Refactored the frontend handling. diff --git a/po/ca_ES.po b/po/ca_ES.po index 05c01a1..02c875a 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 1.0.2\n" +"Project-Id-Version: vdr-satip 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-18 01:18+0200\n" -"PO-Revision-Date: 2015-01-18 01:18+0200\n" +"POT-Creation-Date: 2015-01-25 01:25+0200\n" +"PO-Revision-Date: 2015-01-25 01:25+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 0489acf..858731f 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 1.0.2\n" +"Project-Id-Version: vdr-satip 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-18 01:18+0200\n" -"PO-Revision-Date: 2015-01-18 01:18+0200\n" +"POT-Creation-Date: 2015-01-25 01:25+0200\n" +"PO-Revision-Date: 2015-01-25 01:25+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 2dcf9eb..8c4b399 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 1.0.2\n" +"Project-Id-Version: vdr-satip 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-18 01:18+0200\n" -"PO-Revision-Date: 2015-01-18 01:18+0200\n" +"POT-Creation-Date: 2015-01-25 01:25+0200\n" +"PO-Revision-Date: 2015-01-25 01:25+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 3694cee..75c524d 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-satip 1.0.2\n" +"Project-Id-Version: vdr-satip 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-18 01:18+0200\n" -"PO-Revision-Date: 2015-01-18 01:18+0200\n" +"POT-Creation-Date: 2015-01-25 01:25+0200\n" +"PO-Revision-Date: 2015-01-25 01:25+0200\n" "Last-Translator: Rolf Ahrenberg\n" "Language-Team: Finnish \n" "Language: fi\n" diff --git a/satip.c b/satip.c index 7ae3faa..479267f 100644 --- a/satip.c +++ b/satip.c @@ -27,7 +27,7 @@ #define GITVERSION "" #endif - const char VERSION[] = "1.0.2" GITVERSION; + const char VERSION[] = "2.0.0" GITVERSION; static const char DESCRIPTION[] = trNOOP("SAT>IP Devices"); class cPluginSatip : public cPlugin {