- fix latest key changes (KEY_EXIT => KEY_HOME)

Conflicts:
	src/neutrino.cpp
	version_pseudo.h

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-12-16 01:17:01 +01:00
committed by Thilo Graf
parent e5333574eb
commit 6fdc01c0e7
2 changed files with 9 additions and 1 deletions

View File

@@ -1206,6 +1206,14 @@ void CNeutrinoApp::upgradeSetup(const char * fname)
//remove easymenu
configfile.deleteKey("easymenu");
}
if (g_settings.version_pseudo < "20181216000000")
{
// apply key changes; KEY_EXIT => KEY_HOME
if (g_settings.key_channelList_cancel == 174)
g_settings.key_channelList_cancel = 102;
if (g_settings.key_zaphistory == 174)
g_settings.key_zaphistory = 102;
}
g_settings.version_pseudo = NEUTRINO_VERSION_PSEUDO;
configfile.setString("version_pseudo", g_settings.version_pseudo);

View File

@@ -1 +1 @@
#define NEUTRINO_VERSION_PSEUDO "20170913110000"
#define NEUTRINO_VERSION_PSEUDO "20181216000000"