Version 0.3.4

This commit is contained in:
louis 2015-04-01 16:02:16 +02:00
parent 7c9ad39e95
commit 3ae6a149f8
3 changed files with 6 additions and 2 deletions

View File

@ -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 signal information will be fetched to improve performance.
Version 0.3.4

View File

@ -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) {

View File

@ -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 {