summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY5
-rw-r--r--libtemplate/globals.c1
-rw-r--r--skindesigner.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index c3040ea..f7cb959 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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 {