diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index e59b84f04..760835540 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -696,7 +696,7 @@ flashupdate.createimage_warning Nachfolgend wird ein Image für die %s STB erste flashupdate.currentversion_sep Installierte Version flashupdate.currentversiondate Datum flashupdate.currentversiontime Uhrzeit -flashupdate.enter_flash_script Stoppe laufende Dienste und Softcams ... +flashupdate.enter_flash_script Stoppe laufende Dienste ... flashupdate.erasefailed Flash löschen fehlgeschlagen flashupdate.erasing lösche Flash flashupdate.experimentalimage Sie haben einen Snapshot ausgewählt, bitte beachten Sie,\ndass diese Version ungetestet ist und u.U. Ihre Box\nnach dem Update nicht mehr funktionsfähig ist.\n\nSoll diese Version wirklich installiert werden? @@ -732,7 +732,7 @@ flashupdate.namemode2_hostname_time ++.img flashupdate.new_found Updates verfügbar! flashupdate.new_notfound Keine Updates verfügbar! flashupdate.ng_noflash USB-Image aktiv, Update nicht möglich! -flashupdate.noversion Eine Versionsüberprüfungen ist nur über das Online-Update möglich.\nWollen Sie das ausgewählte Image trotzdem installieren? +flashupdate.noversion Eine Versionsüberprüfung ist nur über das Online-Update möglich.\nWollen Sie das ausgewählte Image trotzdem installieren? flashupdate.programmingflash programmiere Flash flashupdate.proxypassword Passwort flashupdate.proxypassword_hint1 Geben sie das Proxy-Passwort ein diff --git a/data/locale/english.locale b/data/locale/english.locale index a9804d2dd..734d785f8 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -695,7 +695,7 @@ flashupdate.createimage_warning Now an image for the %s STB is created.\nThis im flashupdate.currentversion_sep Current version flashupdate.currentversiondate Date flashupdate.currentversiontime Time -flashupdate.enter_flash_script Stopping services and softcams ... +flashupdate.enter_flash_script Stopping services ... flashupdate.erasefailed erasure of flash failed flashupdate.erasing erasing flash flashupdate.experimentalimage The image you have selected is an untested version, this means\nyour box maybe fail to boot after update.\n\nDo you really want to update to this version? diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 43c35d492..2ce03eb9d 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1175,6 +1175,11 @@ void CNeutrinoApp::upgradeSetup(const char * fname) if (g_settings.mode_icons_flag[4].empty()) g_settings.mode_icons_flag[4] = FLAGDIR "/.update"; } + if (g_settings.version_pseudo < "20170913110000") + { + //remove easymenu + configfile.deleteKey("easymenu"); + } g_settings.version_pseudo = NEUTRINO_VERSION_PSEUDO; configfile.setString("version_pseudo", g_settings.version_pseudo); diff --git a/src/neutrino_menue.cpp b/src/neutrino_menue.cpp index 86c58e447..35b42654f 100644 --- a/src/neutrino_menue.cpp +++ b/src/neutrino_menue.cpp @@ -162,7 +162,7 @@ void CNeutrinoApp::InitMenuMain() media->setHint(NEUTRINO_ICON_HINT_MEDIA, LOCALE_MENU_HINT_MEDIA); personalize.addItem(MENU_MAIN, media, &g_settings.personalize[SNeutrinoSettings::P_MAIN_MEDIA]); - CMenuForwarder * mf; + CMenuForwarder *mf; //games bool show_games = g_Plugins->hasPlugin(CPlugins::P_TYPE_GAME); mf = new CMenuForwarder(LOCALE_MAINMENU_GAMES, show_games, NULL, new CPluginList(LOCALE_MAINMENU_GAMES,CPlugins::P_TYPE_GAME)); @@ -199,7 +199,6 @@ void CNeutrinoApp::InitMenuMain() //2nd section*************************************************************************************************** - CMenuForwarder *mf; // settings, also as pin protected option in personalize menu, as a result of parameter value CPersonalizeGui::PERSONALIZE_SHOW_AS_ACCESS_OPTION mf = new CMenuForwarder(LOCALE_MAINMENU_SETTINGS, true, NULL, &personalize.getWidget(MENU_SETTINGS)); mf->setHint(NEUTRINO_ICON_HINT_SETTINGS, LOCALE_MENU_HINT_SETTINGS); diff --git a/version_pseudo.h b/version_pseudo.h index 5540dd3fd..d32ebccc9 100644 --- a/version_pseudo.h +++ b/version_pseudo.h @@ -1 +1 @@ -#define NEUTRINO_VERSION_PSEUDO "20170904080000" +#define NEUTRINO_VERSION_PSEUDO "20170913110000"