diff options
author | lordjaxom <lordjaxom> | 2004-06-18 16:41:02 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-18 16:41:02 +0000 |
commit | de602ae6486b181ec081749a510cfcf15c71c817 (patch) | |
tree | a6b7efe2b4ad29d6c88b588e8a9b0d7bbeff7c08 /text2skin.c | |
parent | 1d3cd38e88ae97dd6906f9818d52b9ef07bf057d (diff) | |
download | vdr-plugin-text2skin-de602ae6486b181ec081749a510cfcf15c71c817.tar.gz vdr-plugin-text2skin-de602ae6486b181ec081749a510cfcf15c71c817.tar.bz2 |
- reimplemented image cache (fixes segfaults and speeds up image loading)v0.0.6
- fixed a recursion wenn de-initializing ImageMagick (crashes on exit)
- reverted the changes in ImageMagick-loader that concerned palettes
(obviously some versions of ImageMagick are BROKEN!!! I am using 5.5.7 which
works fine. Version 5.4.7 shows random errors)
- reimplemented "Flush image cache" into the setup menu
- included -lMagick into Makefile as a workaround for Debian (and others
possibly)
- fixed display of scrollbar
Diffstat (limited to 'text2skin.c')
-rw-r--r-- | text2skin.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/text2skin.c b/text2skin.c index c974236..6822797 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.20 2004/06/16 18:46:50 lordjaxom Exp $ + * $Id: text2skin.c,v 1.21 2004/06/18 16:08:11 lordjaxom Exp $ */ #include "text2skin.h" @@ -11,32 +11,27 @@ #include "i18n.h" #include "loader.h" -const char *cText2SkinPlugin::VERSION = "0.0.5"; +const char *cText2SkinPlugin::VERSION = "0.0.6"; const char *cText2SkinPlugin::THEMEVERSION = "0.0.2"; const char *cText2SkinPlugin::DESCRIPTION = "Loader for text-based skins"; -cText2SkinPlugin::cText2SkinPlugin(void) -{ +cText2SkinPlugin::cText2SkinPlugin(void) { } -cText2SkinPlugin::~cText2SkinPlugin() -{ +cText2SkinPlugin::~cText2SkinPlugin() { } -bool cText2SkinPlugin::Start(void) -{ +bool cText2SkinPlugin::Start(void) { RegisterI18n(Phrases); cText2SkinLoader::Start(); return true; } -cMenuSetupPage *cText2SkinPlugin::SetupMenu(void) -{ +cMenuSetupPage *cText2SkinPlugin::SetupMenu(void) { return new cText2SkinSetupPage; } -bool cText2SkinPlugin::SetupParse(const char *Name, const char *Value) -{ +bool cText2SkinPlugin::SetupParse(const char *Name, const char *Value) { return Text2SkinSetup.SetupParse(Name, Value); } |