summaryrefslogtreecommitdiff
path: root/text2skin.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-06-13 18:40:59 +0000
committerlordjaxom <lordjaxom>2004-06-13 18:40:59 +0000
commit3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1 (patch)
tree218f9b266dbde63a76caa8548108e1dccec4afc7 /text2skin.c
parentc73c6b62067cef765a85dd2a19dcc7296b813b2c (diff)
downloadvdr-plugin-text2skin-3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1.tar.gz
vdr-plugin-text2skin-3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1.tar.bz2
- added parameter alpha for imagesv0.0.4
- added ReplayMode as Logo to display a replaylogo (normal, vcd, mp3, dvd, ...) - added some german and finnish (thx to Rolf Ahrenberg) translations - fixed VPSTime which was displayed although is was equal to the StartTime - fixed MenuItems which displayed non-Text items periodically - fixed calculation of the editable width in the main menu - fixed animation delay (specified in 1/100th, used 1/1000th) - flushing cache when entering a new display (now the cache basically holds all items necessary in one display) - removed "flush image cache" from setup menu - added "max. cache size" to setup menu
Diffstat (limited to 'text2skin.c')
-rw-r--r--text2skin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/text2skin.c b/text2skin.c
index fecbe52..8ded7a4 100644
--- a/text2skin.c
+++ b/text2skin.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: text2skin.c,v 1.15 2004/06/11 15:02:57 lordjaxom Exp $
+ * $Id: text2skin.c,v 1.19 2004/06/13 18:20:17 lordjaxom Exp $
*/
#include "text2skin.h"
@@ -11,7 +11,7 @@
#include "i18n.h"
#include "loader.h"
-const char *cText2SkinPlugin::VERSION = "0.0.3";
+const char *cText2SkinPlugin::VERSION = "0.0.4";
const char *cText2SkinPlugin::THEMEVERSION = "0.0.2";
const char *cText2SkinPlugin::DESCRIPTION = "Loader for text-based skins";
@@ -37,7 +37,7 @@ cMenuSetupPage *cText2SkinPlugin::SetupMenu(void)
bool cText2SkinPlugin::SetupParse(const char *Name, const char *Value)
{
- return false;
+ return Text2SkinSetup.SetupParse(Name, Value);
}
VDRPLUGINCREATOR(cText2SkinPlugin); // Don't touch this!