diff options
author | louis <louis.braun@gmx.de> | 2015-04-01 16:02:16 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-04-01 16:02:16 +0200 |
commit | 3ae6a149f83c5d4fdad3d9dae7d12a25c7998549 (patch) | |
tree | 861b7a978c15c75459aa28390177f7dfcd83b851 | |
parent | 7c9ad39e95205d2c3304499dc4d66548bea037fa (diff) | |
download | vdr-plugin-skindesigner-0.3.4.tar.gz vdr-plugin-skindesigner-0.3.4.tar.bz2 |
Version 0.3.40.3.4
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | libtemplate/globals.c | 1 | ||||
-rw-r--r-- | skindesigner.c | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -257,4 +257,7 @@ Version 0.3.3 VDR Version < 2.1.8 {percentseen} is set to -1. - added Token {timers[isremotetimer]} to <timers> in main menu - added parameter mode to viewelement <devices>. if mode="light" - no signal information will be fetched to improve performance.
\ No newline at end of file + no signal information will be fetched to improve performance. + + Version 0.3.4 +
\ No newline at end of file diff --git a/libtemplate/globals.c b/libtemplate/globals.c index e09638b..e884b24 100644 --- a/libtemplate/globals.c +++ b/libtemplate/globals.c @@ -149,6 +149,7 @@ void cGlobals::ReplaceStringVars(string &value) { bool cGlobals::AddTranslation(string name, map < string, string > transl) { translations.erase(name); translations.insert(pair<string, map < string, string > >(name, transl)); + return true; } bool cGlobals::Translate(string text, string &translation) { diff --git a/skindesigner.c b/skindesigner.c index b008dd0..b30bb92 100644 --- a/skindesigner.c +++ b/skindesigner.c @@ -19,7 +19,7 @@ #endif -static const char *VERSION = "0.3.3"; +static const char *VERSION = "0.3.4"; static const char *DESCRIPTION = trNOOP("Skin Designer"); class cPluginSkinDesigner : public cPlugin { |