mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Updated the command-line help and README.
This commit is contained in:
parent
dadd26f980
commit
35c0f25c38
4
HISTORY
4
HISTORY
@ -88,3 +88,7 @@ VDR Plugin 'satip' Revision History
|
||||
- Added plenty of performance tweaks (Thanks to
|
||||
Stefan Schallenberg).
|
||||
- Fixed EIT scan (Thanks to Stefan Schallenberg).
|
||||
|
||||
2015-01-10: Version 1.0.1
|
||||
|
||||
- Updated the command-line help and README.
|
||||
|
5
README
5
README
@ -23,6 +23,9 @@ Requirements:
|
||||
TinyXML - a simple, small, C++ XML parser
|
||||
http://www.grinninglizard.com/tinyxml/
|
||||
|
||||
- Glibc >= 2.12 - the GNU C library (recvmmsg)
|
||||
http://www.gnu.org/software/libc/
|
||||
|
||||
- VDR >= 2.1.4 for scrambled channels
|
||||
|
||||
Description:
|
||||
@ -119,6 +122,8 @@ Notes:
|
||||
- Tracing can be set on/off dynamically via command-line switch or
|
||||
SVDRP command.
|
||||
|
||||
- OctopusNet firmware 1.0.40 or greater recommended.
|
||||
|
||||
Acknowledgements:
|
||||
|
||||
- Big thanks to Digital Devices GmbH for providing the Octopus Net
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 1.0.0\n"
|
||||
"Project-Id-Version: vdr-satip 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-12-24 12:24+0200\n"
|
||||
"PO-Revision-Date: 2014-12-24 12:24+0200\n"
|
||||
"POT-Creation-Date: 2015-01-10 01:10+0200\n"
|
||||
"PO-Revision-Date: 2015-01-10 01:10+0200\n"
|
||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
||||
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
||||
"Language: ca\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 1.0.0\n"
|
||||
"Project-Id-Version: vdr-satip 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-12-24 12:24+0200\n"
|
||||
"PO-Revision-Date: 2014-12-24 12:24+0200\n"
|
||||
"POT-Creation-Date: 2015-01-10 01:10+0200\n"
|
||||
"PO-Revision-Date: 2015-01-10 01:10+0200\n"
|
||||
"Last-Translator: Frank Neumann <fnu@yavdr.org>\n"
|
||||
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||
"Language: de\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 1.0.0\n"
|
||||
"Project-Id-Version: vdr-satip 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-12-24 12:24+0200\n"
|
||||
"PO-Revision-Date: 2014-12-24 12:24+0200\n"
|
||||
"POT-Creation-Date: 2015-01-10 01:10+0200\n"
|
||||
"PO-Revision-Date: 2015-01-10 01:10+0200\n"
|
||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
||||
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
||||
"Language: es\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 1.0.0\n"
|
||||
"Project-Id-Version: vdr-satip 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-12-24 12:24+0200\n"
|
||||
"PO-Revision-Date: 2014-12-24 12:24+0200\n"
|
||||
"POT-Creation-Date: 2015-01-10 01:10+0200\n"
|
||||
"PO-Revision-Date: 2015-01-10 01:10+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg\n"
|
||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||
"Language: fi\n"
|
||||
|
3
satip.c
3
satip.c
@ -27,7 +27,7 @@
|
||||
#define GITVERSION ""
|
||||
#endif
|
||||
|
||||
const char VERSION[] = "1.0.0" GITVERSION;
|
||||
const char VERSION[] = "1.0.1" GITVERSION;
|
||||
static const char DESCRIPTION[] = trNOOP("SAT>IP Devices");
|
||||
|
||||
class cPluginSatip : public cPlugin {
|
||||
@ -81,6 +81,7 @@ const char *cPluginSatip::CommandLineHelp(void)
|
||||
debug1("%s", __PRETTY_FUNCTION__);
|
||||
// Return a string that describes all known command line options.
|
||||
return " -d <num>, --devices=<number> set number of devices to be created\n"
|
||||
" -t <mode>, --trace=<mode> set the tracing mode\n"
|
||||
" -s <ipaddr>|<model>|<desc>, --server=<ipaddr1>|<model1>|<desc1>;<ipaddr2>|<model2>|<desc2>\n"
|
||||
" define hard-coded SAT>IP server(s)\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user