diff --git a/src/neutrino.cpp b/src/neutrino.cpp index d34ecd460..2091bfa53 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1492,6 +1492,11 @@ void CNeutrinoApp::upgradeSetup(const char * fname) g_settings.channellist_epgtext_alignment = EPGTEXT_ALIGN_RIGHT_MIDDLE; configfile.deleteKey("channellist_epgtext_align_right"); } + if (g_settings.version_pseudo < "20221129210000") + { + configfile.deleteKey("glcd_weather_curr_x_position"); + configfile.deleteKey("glcd_weather_next_x_position"); + } g_settings.version_pseudo = NEUTRINO_VERSION_PSEUDO; configfile.setString("version_pseudo", g_settings.version_pseudo); diff --git a/version_pseudo.h b/version_pseudo.h index c0cc11586..21cf0ec6b 100644 --- a/version_pseudo.h +++ b/version_pseudo.h @@ -1 +1 @@ -#define NEUTRINO_VERSION_PSEUDO "20220506230000" +#define NEUTRINO_VERSION_PSEUDO "20221129210000"