Updates PHPSecLib. Fixed connection failure to remote server. Adds overriding of back-folder and git-folder on component level.
This commit is contained in:
@ -2,9 +2,11 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
|
||||
`add_admin_event` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_backup_folder_path` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_css_admin` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_css_site` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_email_helper` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_git_folder_path` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_javascript` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_license` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_menu_prefix` CHAR(1) NOT NULL DEFAULT '',
|
||||
@ -29,6 +31,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
`adduikit` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`assets_table_fix` TINYINT(1) NOT NULL DEFAULT 3,
|
||||
`author` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`backup_folder_path` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`bom` CHAR(64) NOT NULL DEFAULT '',
|
||||
`buildcomp` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`buildcompsql` MEDIUMTEXT NOT NULL,
|
||||
@ -51,6 +54,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
`emptycontributors` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`export_buy_link` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`export_key` TEXT NOT NULL,
|
||||
`git_folder_path` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`guid` VARCHAR(36) NOT NULL DEFAULT '',
|
||||
`image` CHAR(64) NOT NULL DEFAULT '',
|
||||
`javascript` TEXT NOT NULL,
|
||||
@ -105,18 +109,17 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `idx_system_name` (`system_name`),
|
||||
KEY `idx_name_code` (`name_code`),
|
||||
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
|
||||
KEY `idx_remove_line_breaks` (`remove_line_breaks`),
|
||||
KEY `idx_add_placeholders` (`add_placeholders`),
|
||||
KEY `idx_debug_linenr` (`debug_linenr`),
|
||||
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
|
||||
KEY `idx_add_placeholders` (`add_placeholders`),
|
||||
KEY `idx_add_sales_server` (`add_sales_server`),
|
||||
KEY `idx_translation_tool` (`translation_tool`),
|
||||
KEY `idx_add_license` (`add_license`),
|
||||
KEY `idx_license_type` (`license_type`),
|
||||
KEY `idx_add_email_helper` (`add_email_helper`),
|
||||
KEY `idx_addreadme` (`addreadme`),
|
||||
KEY `idx_add_sales_server` (`add_sales_server`),
|
||||
KEY `idx_add_powers` (`add_powers`),
|
||||
KEY `idx_translation_tool` (`translation_tool`),
|
||||
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
|
||||
KEY `idx_add_backup_folder_path` (`add_backup_folder_path`),
|
||||
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
|
||||
KEY `idx_add_admin_event` (`add_admin_event`),
|
||||
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
|
||||
@ -137,10 +140,13 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
KEY `idx_emptycontributors` (`emptycontributors`),
|
||||
KEY `idx_add_update_server` (`add_update_server`),
|
||||
KEY `idx_update_server_target` (`update_server_target`),
|
||||
KEY `idx_add_git_folder_path` (`add_git_folder_path`),
|
||||
KEY `idx_creatuserhelper` (`creatuserhelper`),
|
||||
KEY `idx_adduikit` (`adduikit`),
|
||||
KEY `idx_guid` (`guid`),
|
||||
KEY `idx_addfootable` (`addfootable`),
|
||||
KEY `idx_add_email_helper` (`add_email_helper`),
|
||||
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
|
||||
KEY `idx_guid` (`guid`),
|
||||
KEY `idx_access` (`access`),
|
||||
KEY `idx_checkout` (`checked_out`),
|
||||
KEY `idx_createdby` (`created_by`),
|
||||
|
Reference in New Issue
Block a user