summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--HISTORY.DE1
-rw-r--r--epgsearch.c2
-rw-r--r--epgsearchsvdrp.c2
4 files changed, 6 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index b1019da..50a148d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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:
diff --git a/HISTORY.DE b/HISTORY.DE
index 80f1e43..f6d33ed 100644
--- a/HISTORY.DE
+++ b/HISTORY.DE
@@ -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();
}