diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-02-22 17:57:23 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-02-22 17:57:23 +0100 |
commit | 19aad0e9428b4dbf25da8201b048bceebdffec59 (patch) | |
tree | 24e923591845292b24923302b66fa9adf47c7d9e | |
parent | 568c3a56ab3309b6c91b77cc6082d80d238acd5c (diff) | |
download | skin-flatplus-19aad0e9428b4dbf25da8201b048bceebdffec59.tar.gz skin-flatplus-19aad0e9428b4dbf25da8201b048bceebdffec59.tar.bz2 |
release Version 0.2.0
-rw-r--r-- | HISTORY | 8 | ||||
-rw-r--r-- | config.c | 2 | ||||
-rw-r--r-- | po/de_DE.po | 2 | ||||
-rw-r--r-- | setup.c | 7 | ||||
-rw-r--r-- | skinflatplus.c | 2 |
5 files changed, 15 insertions, 6 deletions
@@ -1,23 +1,24 @@ VDR Plugin 'skinflatplus' Revision History --------------------------------------- -2013-12-XX: Version 0.2.0 - +2014-02-22: Version 0.2.0 - [fix] load user decor settings - [fix] menu scrollbar size and margin - [fix] no scrollbar in some situations - [fix] remove button border if button is not shown - [fix] menuitem progressbar overlay itemtext - [fix] fixes in TopBar while icon set +- [fix] setup, wrong init stringlist - [fix] more small fixes - [update] add Patch from MegaV0lt, support for simple aspect & format, new icons - [update] only log not loaded images +- [update] MV-Themes, thanks MegaV0lt! - [add] theme colors clrMenuTextFixedFont, clrMenuTimerItemDisabledFont, clrMenuTimerItemRecordingFont, clrMenuItemExtraTextFont - [add] add support for menu SetItemChannel - [add] add support for menu SetItemTimer - [add] add support for menu SetItemEvent (program menu) -- [add] add support for menu SetItemRecording (program menu) +- [add] add support for menu SetItemRecording - [add] imagescaler from skin nopacity (thank you!) - [add] imagecache for faster image loading - [add] option MenuItemRecordingClearPercent set to 1 to clear the '%' in recording names (you have an cut icon to detect cutted recordings) @@ -25,6 +26,7 @@ VDR Plugin 'skinflatplus' Revision History - [add] option MenuItemParseTilde for parse the tilde (of epgsearch) and draw the text after the tilde in clrMenuItemExtraTextFont color - [add] define DEBUGIMAGELOADTIME for debug output of imageloader time (search in cache, load from disk, scale) + 2013-11-24: Version 0.1.0 - MegaV0lt Version Special thanks to MegaV0lt@VDR-Portal for detailed bug reports, feature requests, testing and themes + icons @@ -43,7 +43,7 @@ cFlatConfig::cFlatConfig(void) { MainMenuItemScale = 1.0; MenuChannelView = 1; - MenuTimerView = 3; + MenuTimerView = 1; MenuEventView = 1; MenuRecordingView = 1; diff --git a/po/de_DE.po b/po/de_DE.po index 24c666a6..20b76d2f 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-skinflat 0.0.1\n" +"Project-Id-Version: vdr-skinflat 0.2.0\n" "Report-Msgid-Bugs-To: <see README>\n" "POT-Creation-Date: 2014-02-18 18:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" @@ -23,6 +23,7 @@ void cFlatSetup::Setup(void) { Bordertypes.Clear(); Progresstypes.Clear(); + Bordertypes.Clear(); Bordertypes.Append( strdup(tr("none")) ); Bordertypes.Append( strdup(tr("rect")) ); Bordertypes.Append( strdup(tr("round")) ); @@ -31,6 +32,7 @@ void cFlatSetup::Setup(void) { Bordertypes.Append( strdup(tr("round + alpha blend")) ); Bordertypes.Append( strdup(tr("invert round + alpha blend")) ); + Progresstypes.Clear(); Progresstypes.Append( strdup(tr("small line + big line")) ); Progresstypes.Append( strdup(tr("big line")) ); Progresstypes.Append( strdup(tr("big line + outline")) ); @@ -42,22 +44,26 @@ void cFlatSetup::Setup(void) { Progresstypes.Append( strdup(tr("small line + big line + alpha blend")) ); Progresstypes.Append( strdup(tr("big line + alpha blend")) ); + MenuChannelViews.Clear(); MenuChannelViews.Append( strdup(tr("VDR default")) ); MenuChannelViews.Append( strdup(tr("flatPlus long")) ); MenuChannelViews.Append( strdup(tr("flatPlus long + EPG")) ); MenuChannelViews.Append( strdup(tr("flatPlus short")) ); MenuChannelViews.Append( strdup(tr("flatPlus short + EPG")) ); + MenuTimerViews.Clear(); MenuTimerViews.Append( strdup(tr("VDR default")) ); MenuTimerViews.Append( strdup(tr("flatPlus long")) ); MenuTimerViews.Append( strdup(tr("flatPlus short")) ); MenuTimerViews.Append( strdup(tr("flatPlus short + EPG")) ); + MenuEventViews.Clear(); MenuEventViews.Append( strdup(tr("VDR default")) ); MenuEventViews.Append( strdup(tr("flatPlus long")) ); MenuEventViews.Append( strdup(tr("flatPlus short")) ); MenuEventViews.Append( strdup(tr("flatPlus short + EPG")) ); + MenuRecordingViews.Clear(); MenuRecordingViews.Append( strdup(tr("VDR default")) ); MenuRecordingViews.Append( strdup(tr("flatPlus long")) ); MenuRecordingViews.Append( strdup(tr("flatPlus short")) ); @@ -206,6 +212,7 @@ cFlatSetupGeneral::cFlatSetupGeneral(cFlatConfig* data) : cMenuSetupSubMenu(tr( void cFlatSetupGeneral::Setup(void) { Clear(); + DecorDescriptions.Clear(); SetupConfig->DecorDescriptions( DecorDescriptions ); if( SetupConfig->DecorIndex < 0 || SetupConfig->DecorIndex > DecorDescriptions.Size() ) SetupConfig->DecorIndex = 0; diff --git a/skinflatplus.c b/skinflatplus.c index fb6dbc63..d89bbe93 100644 --- a/skinflatplus.c +++ b/skinflatplus.c @@ -16,7 +16,7 @@ #include "setup.h" #include "imageloader.h" -static const char *VERSION = "0.1.0"; +static const char *VERSION = "0.2.0"; static const char *DESCRIPTION = "skin flatplus"; class cPluginFlat : public cPlugin { |