diff options
author | lordjaxom <lordjaxom> | 2004-06-11 15:32:39 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-11 15:32:39 +0000 |
commit | c73c6b62067cef765a85dd2a19dcc7296b813b2c (patch) | |
tree | 7e340834d60d30a50b682c3e00c6f09eabeacf2e /text2skin.h | |
parent | e0de96fc7168daeaf414fb6196e08969468427d2 (diff) | |
download | vdr-plugin-text2skin-c73c6b62067cef765a85dd2a19dcc7296b813b2c.tar.gz vdr-plugin-text2skin-c73c6b62067cef765a85dd2a19dcc7296b813b2c.tar.bz2 |
- fixed VPSTime which was displayed on channels that didn't even have VPSv0.0.3
- fixed Symbols in channel display when viewing a group
- fixed text translation if no translation is present
- fixed compile error with gcc 3.4 (thanks to Gregoire Favre for reporting this)
- restructured Skin (now the official Skin version is 0.0.2)
it is now possible to control visibility of all items
- added a script to convert 0.0.1 themes to 0.0.2
- added support for animated logos (mng or gif files) ONLY IMAGEMAGICK!!!
- added finnish language translations (thanks to Rolf Ahrenberg)
Diffstat (limited to 'text2skin.h')
-rw-r--r-- | text2skin.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/text2skin.h b/text2skin.h index a42faf1..8699c65 100644 --- a/text2skin.h +++ b/text2skin.h @@ -1,5 +1,5 @@ /* - * $Id: text2skin.h,v 1.2 2004/06/05 16:53:14 lordjaxom Exp $ + * $Id: text2skin.h,v 1.4 2004/06/11 15:01:58 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_H @@ -13,12 +13,14 @@ private: static const char *VERSION; static const char *THEMEVERSION; static const char *DESCRIPTION; + public: + static const char *ThemeVersion(void) { return THEMEVERSION; } + cText2SkinPlugin(void); virtual ~cText2SkinPlugin(); virtual const char *Version(void) { return VERSION; } - virtual const char *ThemeVersion(void) { return THEMEVERSION; } - virtual const char *Description(void) { return DESCRIPTION; } + virtual const char *Description(void) { return tr(DESCRIPTION); } virtual bool Start(void); virtual cMenuSetupPage *SetupMenu(void); virtual bool SetupParse(const char *Name, const char *Value); |