diff options
author | lordjaxom <lordjaxom> | 2004-06-02 19:56:58 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-02 19:56:58 +0000 |
commit | e0c2ee1d37c0f213f22a04df71710bebe3526f85 (patch) | |
tree | 8bfd3a4fa065abeb016134466523a1152202e597 /text2skin.c | |
parent | e535cdbe09d9c13d79cd6722aafca5798b7d1e35 (diff) | |
download | vdr-plugin-text2skin-e0c2ee1d37c0f213f22a04df71710bebe3526f85.tar.gz vdr-plugin-text2skin-e0c2ee1d37c0f213f22a04df71710bebe3526f85.tar.bz2 |
- implemented image loading through ImageMagick (fixes crashes when runningv0.0.1-rc4
together with GraphTFT)
- implemented Theme support (see file demo.colors in the demo skin)
- implemented translations for texts used in skins (see file demo.trans in the
demo skin)
Diffstat (limited to 'text2skin.c')
-rw-r--r-- | text2skin.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/text2skin.c b/text2skin.c index e2b0b9a..68602d2 100644 --- a/text2skin.c +++ b/text2skin.c @@ -3,15 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: text2skin.c,v 1.7 2004/06/01 21:02:38 lordjaxom Exp $ + * $Id: text2skin.c,v 1.9 2004/06/02 19:55:55 lordjaxom Exp $ */ -#define __STL_CONFIG_H -#include <vdr/plugin.h> -#undef __STL_CONFIG_H #include "loader.h" +#include <vdr/plugin.h> -static const char *VERSION = "0.0.1-rc3"; +static const char *VERSION = "0.0.1-rc4"; static const char *DESCRIPTION = "Loader for text-based skins"; class cText2SkinPlugin : public cPlugin { |