summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY2
-rw-r--r--HISTORY.DE3
-rw-r--r--epgsearch.c2
-rw-r--r--templatefile.c4
4 files changed, 10 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 27d4a7a..b4f862c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -36,6 +36,8 @@ new:
suggested by Sundararaj Reel
- moved 'file' and 'directory' to the top in the timer edit menu, since at least in
my case its the most common entry to change, e.g. to select a folder for the recording.
+- auto enable Wareagle icons if VDRSymbols font is used (can be overwritten with
+ WarEagleIcons=0 in epgsearchmenu.conf), suggested by Ronny Kornexl
fixes:
- fixed a crash when pressing 'Ok' in an empty timers done menu
- fixed a crash when using the progressbar and events with 0 duration exist, thanks
diff --git a/HISTORY.DE b/HISTORY.DE
index bae18f5..0f63fbf 100644
--- a/HISTORY.DE
+++ b/HISTORY.DE
@@ -39,6 +39,9 @@ neu:
- 'Datei' und 'Verzeichnis' an den Anfang des Timeredit-Menüs verlegt, da es zumindest bei
mir das am meisten editierte Feld ist, z.B. bei wegen der Auswahl eines Ordners für die
Aufnahme.
+- Wareagle Icons werden bei Verwendung des VDRSymbols-Font nun automatisch aktiv (kann aber
+ mit WarEagleIcons=0 in epgsearchmenu.conf überschrieben werden), vorgeschlagen von
+ Ronny Kornexl
fixes:
- Absturz beim Drücken von 'Ok' in leerem Menü erledigter Timer behoben
- Absturz bei Verwendung des Fortschrittsbalkens in Verbindung mit Sendungen
diff --git a/epgsearch.c b/epgsearch.c
index d4d26da..12a4e43 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.beta10";
+static const char VERSION[] = "0.9.25.beta11";
static const char DESCRIPTION[] = trNOOP("search the EPG for repeats and more");
// globals
diff --git a/templatefile.c b/templatefile.c
index 3272182..5b01534 100644
--- a/templatefile.c
+++ b/templatefile.c
@@ -145,6 +145,10 @@ cMenuTemplate* cTemplFile::GetTemplateByName(const char* Name)
bool cTemplFile::Load(const char *FileName)
{
+ // auto-enable WarEagle-Icons if VDRSymbols font is used
+ if (strstr(Setup.FontOsd, "VDRSymbols") == Setup.FontOsd)
+ EPGSearchConfig.WarEagle = 1;
+
if (cConfig<cTemplLine>::Load(FileName, true))
{
bool result = true;