From 1c99501776c6c7752730b184a479f0f2909267f5 Mon Sep 17 00:00:00 2001 From: kamel5 Date: Thu, 20 Jun 2019 15:40:15 +0200 Subject: [PATCH] Correct plugin options in README and CommandLineHelp --- README | 4 ++-- tvguide.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index d47cf60..e9f6cba 100644 --- a/README +++ b/README @@ -44,13 +44,13 @@ After "normal" Plugin installation you have to care about the paths for the used Icons, the channel logos and epg images. The following paths can be set at startup: --l path, --logodir=path +-l path, --logopath=path Path to the logos (Default: /plugins/tvguide/channellogos/). -e path, --epgimages=path Path to the epgimages (Default: /plugins/tvguide/epgimages/). --i path, --icons=path +-i path, --iconpath=path Path to the icons directory (Default: /plugins/tvguide/epgimages/). and is taken from your VDR configuration diff --git a/tvguide.c b/tvguide.c index 4362519..3bbcf55 100644 --- a/tvguide.c +++ b/tvguide.c @@ -62,9 +62,9 @@ cPluginTvguide::~cPluginTvguide() { const char *cPluginTvguide::CommandLineHelp(void) { return - " -e , --epgimages= Set directory where epgimages are stored.\n" - " -i , --icons= Set directory where icons are stored.\n" - " -l , --logodir= Set directory where logos are stored.\n"; + " -e , --epgimages= Set directory where epgimages are stored.\n" + " -i , --iconpath= Set directory where icons are stored.\n" + " -l , --logopath= Set directory where logos are stored.\n"; } bool cPluginTvguide::ProcessArgs(int argc, char *argv[]) {