|
From: Enlightenment C. <no...@cv...> - 2007-04-12 03:20:44
|
Enlightenment CVS committal
Author : devilhorns
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_config.c e_config.h
Log Message:
Fix urandom e_config snafu. When you add new e_config properties, be sure to
bump the e_config generation.
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.238
retrieving revision 1.239
diff -u -3 -r1.238 -r1.239
--- e_config.c 11 Apr 2007 21:40:53 -0000 1.238
+++ e_config.c 12 Apr 2007 03:20:42 -0000 1.239
@@ -663,7 +663,6 @@
e_config->winlist_pos_max_h = 320;
e_config->maximize_policy = E_MAXIMIZE_SMART | E_MAXIMIZE_BOTH;
e_config->allow_manip = 0;
- e_config->border_fix_on_shelf_toggle = 0;
e_config->kill_if_close_not_possible = 1;
e_config->kill_process = 1;
e_config->kill_timer_wait = 10.0;
@@ -1383,6 +1382,10 @@
e_config->clientlist_limit_caption_len = 0;
IFCFGEND;
+ IFCFG(0x0116);
+ e_config->border_fix_on_shelf_toggle = 0;
+ IFCFGEND;
+
e_config->config_version = E_CONFIG_FILE_VERSION;
#if 0 /* example of new config */
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.h,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -3 -r1.152 -r1.153
--- e_config.h 11 Apr 2007 21:40:53 -0000 1.152
+++ e_config.h 12 Apr 2007 03:20:42 -0000 1.153
@@ -54,7 +54,7 @@
/* 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 0x0115
+#define E_CONFIG_FILE_GENERATION 0x0116
#define E_CONFIG_FILE_VERSION ((E_CONFIG_FILE_EPOCH << 16) | E_CONFIG_FILE_GENERATION)
#define E_EVAS_ENGINE_DEFAULT 0
|