diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 7f495c458..daa89581f 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1199,6 +1199,12 @@ void CNeutrinoApp::upgradeSetup(const char * fname) //remove easymenu configfile.deleteKey("easymenu"); } + if (g_settings.version_pseudo < "20180123160000") + { + // apply tuxtxt font changes + if (g_settings.ttx_font_file == FONTDIR "/DejaVuLGCSansMono-Bold.ttf") + g_settings.ttx_font_file = FONTDIR "/tuxtxt.ttf"; + } 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 d32ebccc9..080750cd6 100644 --- a/version_pseudo.h +++ b/version_pseudo.h @@ -1 +1 @@ -#define NEUTRINO_VERSION_PSEUDO "20170913110000" +#define NEUTRINO_VERSION_PSEUDO "20180123160000"