Index: branches/1.3.x/install/upgrades.sql =================================================================== diff -u -N -r15496 -r15668 --- branches/1.3.x/install/upgrades.sql (.../upgrades.sql) (revision 15496) +++ branches/1.3.x/install/upgrades.sql (.../upgrades.sql) (revision 15668) @@ -59,3 +59,5 @@ # ===== v 1.2.0-RC1 ===== # ===== v 1.2.0 ===== + +# ===== v 1.2.1-B1 ===== Index: branches/1.3.x/units/widgets/widgets_config.php =================================================================== diff -u -N -r15653 -r15668 --- branches/1.3.x/units/widgets/widgets_config.php (.../widgets_config.php) (revision 15653) +++ branches/1.3.x/units/widgets/widgets_config.php (.../widgets_config.php) (revision 15668) @@ -163,7 +163,7 @@ 'Image' => Array ( 'type' => 'string', 'formatter' => 'kUploadFormatter', 'max_size' => MAX_UPLOAD_SIZE, // in Bytes ! - 'file_types' => '*.jpg;*.gif;*.png', 'files_description' => '!la_hint_ImageFiles!', + 'file_types' => '*.jpg;*.jpeg;*.gif;*.png;*.bmp', 'files_description' => '!la_hint_ImageFiles!', 'upload_dir' => '/system/user_files/', // relative to project's home 'as_image' => true, 'thumb_format' => 'resize:100x100', 'multiple' => false, // false or max number of files - will be stored as serialized array of paths Index: branches/1.3.x/units/sections/sections_config.php =================================================================== diff -u -N -r15653 -r15668 --- branches/1.3.x/units/sections/sections_config.php (.../sections_config.php) (revision 15653) +++ branches/1.3.x/units/sections/sections_config.php (.../sections_config.php) (revision 15668) @@ -99,5 +99,28 @@ 'show_mode' => smDEBUG, 'type' => stTREE, ), + + 'custom:setting_folder' => Array ( + 'parent' => 'in-portal:system', + 'icon' => 'conf_custom', + 'label' => 'la_title_Custom', + 'use_parent_header' => 1, + 'url' => Array ('t' => 'index', 'pass_section' => true, 'pass' => 'm'), + 'permissions' => Array ('view'), + 'priority' => 3.6, + 'container' => true, + 'show_mode' => smDEBUG, + 'type' => stTREE, + ), + + 'custom:configuration_custom' => Array ( + 'parent' => 'custom:setting_folder', + 'icon' => 'custom', + 'label' => 'la_tab_ConfigOutput', + 'url' => Array('t' => 'config/config_universal', 'pass_section' => true, 'pass' => 'm'), + 'permissions' => Array('view', 'edit'), + 'priority' => 50, + 'type' => stTREE, + ), ), -); \ No newline at end of file +); Index: branches/1.3.x/install/upgrades.php =================================================================== diff -u -N -r15496 -r15668 --- branches/1.3.x/install/upgrades.php (.../upgrades.php) (revision 15496) +++ branches/1.3.x/install/upgrades.php (.../upgrades.php) (revision 15668) @@ -1,6 +1,6 @@ Array ('Core' => '5.2.0-B3'), '1.2.0-RC1' => Array ('Core' => '5.2.0-RC1'), '1.2.0' => Array ('Core' => '5.2.0'), + '1.2.1-B1' => Array ('Core' => '5.2.1-B1'), ); } }