bump config version, update p16 module users to regular p

come on.
This commit is contained in:
Mike Blumenkrantz 2014-08-06 14:18:54 -04:00
parent 0bb9acc75d
commit 1080b3d5d7
2 changed files with 15 additions and 1 deletions

View File

@ -1305,6 +1305,20 @@ e_config_load(void)
e_config->modules = eina_list_append(e_config->modules, em);
}
}
CONFIG_VERSION_CHECK(17)
{
E_Config_Module *em;
Eina_List *l;
CONFIG_VERSION_UPDATE_INFO(17);
EINA_LIST_FOREACH(e_config->modules, l, em)
if (!strcmp(em->name, "pager16"))
{
eina_stringshare_replace(&em->name, "pager");
break;
}
}
}
if (!e_config->remember_internal_fm_windows)
e_config->remember_internal_fm_windows = !!(e_config->remember_internal_windows & E_REMEMBER_INTERNAL_FM_WINS);

View File

@ -47,7 +47,7 @@ typedef enum
/* increment this whenever a new set of config values are added but the users
* config doesn't need to be wiped - simply new values need to be put in
*/
#define E_CONFIG_FILE_GENERATION 16
#define E_CONFIG_FILE_GENERATION 17
#define E_CONFIG_FILE_VERSION ((E_CONFIG_FILE_EPOCH * 1000000) + E_CONFIG_FILE_GENERATION)
#define E_CONFIG_BINDINGS_VERSION 0 // DO NOT INCREMENT UNLESS YOU WANT TO WIPE ALL BINDINGS!!!!!