Skip to content

Commit

Permalink
New Build file. Fix some sql updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcordis committed Nov 4, 2017
1 parent 979e41e commit f5b9e58
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 4 deletions.
Binary file modified build/packages/component/com_proclaim.zip
Binary file not shown.
Binary file modified build/packages/modules/mod_proclaim.zip
Binary file not shown.
Binary file modified build/packages/modules/mod_proclaim_podcast.zip
Binary file not shown.
Binary file modified build/packages/pkg_proclaim.zip
Binary file not shown.
Binary file modified build/packages/plugins/plg_proclaim_backup.zip
Binary file not shown.
Binary file modified build/packages/plugins/plg_proclaim_finder.zip
Binary file not shown.
Binary file modified build/packages/plugins/plg_proclaim_podcast.zip
Binary file not shown.
Binary file modified build/packages/plugins/plg_proclaim_search.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion com_biblestudy/admin/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
define('JBSM_PROFILER', 0);

// Version information
define('BIBLESTUDY_VERSION', '9.0.17');
define('BIBLESTUDY_VERSION', '9.1.0');
define('BIBLESTUDY_VERSION_UPDATEFILE', 'JBS Version ' . BIBLESTUDY_VERSION);

// Default values
Expand Down
4 changes: 2 additions & 2 deletions com_biblestudy/admin/install/sql/install-defaults.sql
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ VALUES
-- Dump of table #__bsms_series
-- ------------------------------------------------------------

INSERT INTO `#__bsms_series` (`id`, `series_text`, `alias`, `teacher`, `description`, `series_thumbnail`, `published`, `asset_id`, `ordering`, `access`, `language`, `landing_show`)
INSERT INTO `#__bsms_series` (`id`, `series_text`, `alias`, `teacher`, `description`, `series_thumbnail`, `published`, `asset_id`, `ordering`, `access`, `language`, `landing_show`, `pc_show`)
VALUES
(1, 'Worship Series', X'776F72736869702D736572696573', -1, '', '', 1, 7484, 1, 1, '*', NULL);
(1, 'Worship Series', X'776F72736869702D736572696573', -1, '', '', 1, 7484, 1, 1, '*', NULL, 1);

-- Dump of table #__bsms_servers
-- ------------------------------------------------------------
Expand Down
4 changes: 3 additions & 1 deletion com_biblestudy/admin/install/sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE `#__bsms_update` (

INSERT INTO `#__bsms_update` (`id`, `version`)
VALUES
(1, '9.0.17');
(1, '9.1.0');

-- --------------------------------------------------------

Expand Down Expand Up @@ -242,6 +242,8 @@ CREATE TABLE `#__bsms_series` (
`access` INT(10) UNSIGNED NOT NULL DEFAULT '1',
`language` CHAR(7) NOT NULL COMMENT 'The language code for the Series.',
`landing_show` INT(3) DEFAULT NULL,
`pc_show` INT(3) NOT NULL DEFAULT '1' COMMENT 'For displaying on
podcasts page',
PRIMARY KEY (`id`),
KEY `idx_state` (`published`),
KEY `idx_access` (`access`)
Expand Down
8 changes: 8 additions & 0 deletions com_biblestudy/admin/install/sql/updates/mysql/9.1.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `#__bsms_update` (
id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
version VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (id)
) DEFAULT CHARSET=utf8;

INSERT INTO `#__bsms_update` (id, version) VALUES ('29', '9.1.0')
ON DUPLICATE KEY UPDATE version = '9.1.0';

0 comments on commit f5b9e58

Please sign in to comment.