diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-12-21 23:57:05 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-12-21 23:57:05 +0000 |
commit | 0f01a6b279a69c376ccb677019bcb2b29d9b4ebb (patch) | |
tree | 3378f91eaf199da44503d07a2551f5f2b9e2e226 /config | |
parent | 66a749c2ce2087367d293e099d0a805cdc0703cf (diff) | |
download | enlightenment-0f01a6b279a69c376ccb677019bcb2b29d9b4ebb.tar.gz |
in a move which will make me tremendously unpopular, config versioning has been changed from hex to dec across the whole tree, including helper functions and modules
PS. HAHAHAHAHAHAHAHA
SVN revision: 81624
Diffstat (limited to 'config')
-rw-r--r-- | config/default/e.src | 2 | ||||
-rw-r--r-- | config/mobile/e.src | 2 | ||||
-rw-r--r-- | config/mobile/module.conf.src | 2 | ||||
-rw-r--r-- | config/standard/e.src | 4 | ||||
-rw-r--r-- | config/standard/module.conf.src | 4 | ||||
-rw-r--r-- | config/standard/module.fileman.src | 11 |
6 files changed, 16 insertions, 9 deletions
diff --git a/config/default/e.src b/config/default/e.src index c9a893e0de..64b702b75b 100644 --- a/config/default/e.src +++ b/config/default/e.src @@ -1,5 +1,5 @@ group "E_Config" struct { - value "config_version" int: 65865; + value "config_version" int: 1000000; value "show_splash" int: 0; value "init_default_theme" string: "default.edj"; value "desktop_default_name" string: "%i-%i"; diff --git a/config/mobile/e.src b/config/mobile/e.src index 3f6dc6fc1b..70d2767f0b 100644 --- a/config/mobile/e.src +++ b/config/mobile/e.src @@ -1,5 +1,5 @@ group "E_Config" struct { - value "config_version" int: 65865; + value "config_version" int: 1000000; value "show_splash" int: 1; value "init_default_theme" string: "default.edj"; value "desktop_default_name" string: "%i-%i"; diff --git a/config/mobile/module.conf.src b/config/mobile/module.conf.src index 336b9e6fc3..b0c2bea66a 100644 --- a/config/mobile/module.conf.src +++ b/config/mobile/module.conf.src @@ -1,4 +1,4 @@ group "Config" struct { - value "version" int: 65677; + value "config_version" int: 1000000; value "menu_augmentation" int: 0; } diff --git a/config/standard/e.src b/config/standard/e.src index fedb4b0e77..3e384ea247 100644 --- a/config/standard/e.src +++ b/config/standard/e.src @@ -1,5 +1,5 @@ group "E_Config" struct { - value "config_version" int: 65865; + value "config_version" int: 1000000; value "show_splash" int: 1; value "init_default_theme" string: "default.edj"; value "desktop_default_name" string: "%i-%i"; @@ -214,7 +214,7 @@ group "E_Config" struct { value "powersave.extreme" double: 1200.0; value "powersave.min" int: 0; value "powersave.max" int: 5; - value "no_module_delay" int: 1; + value "no_module_delay" int: 0; group "syscon.actions" list { group "E_Config_Syscon_Action" struct { value "action" string: "halt"; diff --git a/config/standard/module.conf.src b/config/standard/module.conf.src index 336b9e6fc3..f70b80a73e 100644 --- a/config/standard/module.conf.src +++ b/config/standard/module.conf.src @@ -1,4 +1,4 @@ group "Config" struct { - value "version" int: 65677; - value "menu_augmentation" int: 0; + value "config_version" int: 1000000; + value "menu_augmentation" int: 1; } diff --git a/config/standard/module.fileman.src b/config/standard/module.fileman.src index b52a1fb111..a8df2f6dd3 100644 --- a/config/standard/module.fileman.src +++ b/config/standard/module.fileman.src @@ -1,7 +1,7 @@ group "Fileman_Config" struct { - value "config_version" int: 65793; + value "config_version" int: 1000000; value "view.mode" int: 1; - value "view.open_dirs_in_place" uchar: 0; + value "view.open_dirs_in_place" uchar: 1; value "view.selector" uchar: 0; value "view.single_click" uchar: 0; value "view.no_subdir_jump" uchar: 0; @@ -12,6 +12,7 @@ group "Fileman_Config" struct { value "view.show_full_path" uchar: 0; value "view.show_desktop_icons" uchar: 1; value "view.show_toolbar" uchar: 0; + value "view.show_sidebar" uchar: 0; value "icon.icon.w" int: 48; value "icon.icon.h" int: 48; value "icon.list.w" int: 16; @@ -25,4 +26,10 @@ group "Fileman_Config" struct { value "selection.single" uchar: 0; value "selection.windows_modifiers" uchar: 0; value "theme.fixed" uchar: 0; + value "tooltip.enable" uchar: 1; + value "tooltip.delay" double: 1.0; + value "tooltip.size" double: 30.0; + value "view.spring_delay" int: 1; + value "icon.max_thumb_size" uint: 0; + value "view.toolbar_orient" uint: 5; } |