From ae9c6ccad6ba1ab419fe73d9e75f545cbbb62c96 Mon Sep 17 00:00:00 2001 From: Andreas Mair Date: Mon, 18 Jun 2007 16:15:02 +0200 Subject: 2007-06-18: Version 0.0.5rc2 - Added Italian translation (Submitted by Gringo). - Changed logging to only report missing channel logos once. - Use MAXFONTNAME and MAXFONTSIZE as introduced in VDR 1.5.3. - Recognize VDR >=1.5.3 and disable HAVE_FREETYPE. - Fixed font initialization. - Updated MoBuntu theme (Submitted by Morone @vdr-portal.de). - Set correct editable width for OSD text inputs (Reported by Brougs78 @vdr-portal.de). - Fixed calculation of bottom line in channel info (Reported by CKone @vdr-portal.de). - Hide "Set" button in fonts setup if TTF support disabled. - Fixed crash in TTF setup if no TrueType fonts were found (Reported by pat @vdr-portal.de). - Set correct title in setup submenus (Reported by pat @vdr-portal.de). - Minor bugfixes. --- texteffects.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'texteffects.c') diff --git a/texteffects.c b/texteffects.c index 59b4e9c..37dfd13 100644 --- a/texteffects.c +++ b/texteffects.c @@ -415,10 +415,10 @@ const char **cEnigmaTextEffects::GetAvailTTFs(void) while ((e = d.Next()) != NULL) { if ((strcmp(e->d_name, ".") != 0) && (strcmp(e->d_name, "..") != 0)) { if (strcmp(e->d_name + strlen(e->d_name) - 4, ".ttf") == 0) { - printf("Loading %s\n", e->d_name); + debug("Loading %s\n", e->d_name); vecFonts.push_back(std::string(e->d_name)); } else { - printf("Ignoring non-font file: %s\n", e->d_name); + error("Ignoring non-font file: %s\n", e->d_name); } } } -- cgit v1.2.3