diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | HISTORY.DE | 3 | ||||
-rw-r--r-- | epgsearch.c | 2 | ||||
-rw-r--r-- | templatefile.c | 4 |
4 files changed, 10 insertions, 1 deletions
@@ -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 @@ -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; |