mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 15:02:56 +02:00
- 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:
@@ -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);
|
||||
|
||||
|
@@ -1 +1 @@
|
||||
#define NEUTRINO_VERSION_PSEUDO "20170913110000"
|
||||
#define NEUTRINO_VERSION_PSEUDO "20181216000000"
|
||||
|
Reference in New Issue
Block a user