diff options
| author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-09-19 16:41:12 +0200 |
|---|---|---|
| committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-09-19 16:41:12 +0200 |
| commit | fd738cd2046620a3b7e96fb5884aa60b14b2f763 (patch) | |
| tree | dd4afb7631ff9c59a9b7dfeea972b9517305fe1d | |
| parent | dc54a83434fe22db1c20b78b5e3a19d46160e4b4 (diff) | |
| download | vdr-plugin-epgsearch-fd738cd2046620a3b7e96fb5884aa60b14b2f763.tar.gz vdr-plugin-epgsearch-fd738cd2046620a3b7e96fb5884aa60b14b2f763.tar.bz2 | |
fixed line breaks in SVDRP command LSTT
| -rw-r--r-- | HISTORY | 3 | ||||
| -rw-r--r-- | HISTORY.DE | 1 | ||||
| -rw-r--r-- | epgsearch.c | 2 | ||||
| -rw-r--r-- | epgsearchsvdrp.c | 2 |
4 files changed, 6 insertions, 2 deletions
@@ -21,6 +21,9 @@ fixes: with 'avoid repeats' now running events are ignored for the repeats. - now using cCondWait::Wait instead of cCondWait:SleepMs to avoid shutdown problems, thanks to e9hack@vdrportal for providing a patch +- fixed line breaks in SVDRP command LSTT, thanks to Andreas Mair for providing a + patch + 2008-04-29: Version 0.9.24 new: @@ -22,6 +22,7 @@ fixes: holung ignoriert. - Es wird nun cCondWait::Wait anstelle von cCondWait:SleepMs verwendet um Probleme beim Beenden zu vermeiden, danke e9hack@vdrportal für den Patch +- Zeilenumbrüche im SVDRP-Befehl LSTT korrigiert, Danke an Andreas Mair für einen Patch 2008-04-29: Version 0.9.24 diff --git a/epgsearch.c b/epgsearch.c index d9f6b7f..b7ffc15 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -69,7 +69,7 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include <langinfo.h> #endif -static const char VERSION[] = "0.9.25.beta4"; +static const char VERSION[] = "0.9.25.beta5"; static const char DESCRIPTION[] = trNOOP("search the EPG for repeats and more"); // globals diff --git a/epgsearchsvdrp.c b/epgsearchsvdrp.c index 31540f6..865e358 100644 --- a/epgsearchsvdrp.c +++ b/epgsearchsvdrp.c @@ -1087,7 +1087,7 @@ cString cPluginEpgsearch::SVDRPCommand(const char *Command, const char *Option, { cSearchExt* search = SearchTemplates.Get(i); if (search) - sBuffer += string(search->ToText()) + string((i<SearchExts.Count()-1)?"\n":""); + sBuffer += string(search->ToText()) + string((i<SearchTemplates.Count()-1)?"\n":""); } return sBuffer.c_str(); } |
