diff --git a/CHANGELOG.md b/CHANGELOG.md index 1237888..bca9eca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v5.0.7 + +- Fix missing token variable in ajax call + # v5.0.6 - Fix an Ajax input typo. @@ -28,6 +32,6 @@ - Moved to Joomla 4 and 5 -# v3.0.4 +# v3.0.5 -- Fix an Ajax input typo. \ No newline at end of file +- Fix missing token variable in ajax call \ No newline at end of file diff --git a/GetbibleInstallerScript.php b/GetbibleInstallerScript.php index fc7b80e..e65eece 100644 --- a/GetbibleInstallerScript.php +++ b/GetbibleInstallerScript.php @@ -755,7 +755,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface echo '
-

Upgrade to Version 5.0.6 Was Successful! Let us know if anything is not working as expected.

'; +

Upgrade to Version 5.0.7 Was Successful! Let us know if anything is not working as expected.

'; // Add/Update component in the action logs extensions table. $this->setActionLogsExtensions(); diff --git a/README.md b/README.md index 03b7bd5..c9000ed 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Get Bible (5.0.6) +# Get Bible (5.0.7) ![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/5.0/admin/assets/images/vdm-component.jpg "GetBible") @@ -18,8 +18,8 @@ In essence, The Bible for Joomla is designed to transform how the Word of God is + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Get Bible](https://getbible.net) + *First Build*: 3rd December, 2015 -+ *Last Build*: 1st March, 2024 -+ *Version*: 5.0.6 ++ *Last Build*: 4th March, 2024 ++ *Version*: 5.0.7 + *Copyright*: Copyright (C) 2015. All Rights Reserved + *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html @@ -31,8 +31,8 @@ due to [Automated Component Builder](https://www.joomlacomponentbuilder.com)) > (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**, > never making one mistake or taking any coffee break.) -+ *Line count*: **207504** -+ *File count*: **1724** ++ *Line count*: **207531** ++ *File count*: **1725** + *Folder count*: **189** **382 Hours** or **48 Eight Hour Days** (the actual time the author spent) diff --git a/admin/README.txt b/admin/README.txt index 03b7bd5..c9000ed 100644 --- a/admin/README.txt +++ b/admin/README.txt @@ -1,4 +1,4 @@ -# Get Bible (5.0.6) +# Get Bible (5.0.7) ![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/5.0/admin/assets/images/vdm-component.jpg "GetBible") @@ -18,8 +18,8 @@ In essence, The Bible for Joomla is designed to transform how the Word of God is + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Get Bible](https://getbible.net) + *First Build*: 3rd December, 2015 -+ *Last Build*: 1st March, 2024 -+ *Version*: 5.0.6 ++ *Last Build*: 4th March, 2024 ++ *Version*: 5.0.7 + *Copyright*: Copyright (C) 2015. All Rights Reserved + *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html @@ -31,8 +31,8 @@ due to [Automated Component Builder](https://www.joomlacomponentbuilder.com)) > (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**, > never making one mistake or taking any coffee break.) -+ *Line count*: **207504** -+ *File count*: **1724** ++ *Line count*: **207531** ++ *File count*: **1725** + *Folder count*: **189** **382 Hours** or **48 Eight Hour Days** (the actual time the author spent) diff --git a/admin/sql/updates/mysql/3.0.4.sql b/admin/sql/updates/mysql/3.0.5.sql similarity index 100% rename from admin/sql/updates/mysql/3.0.4.sql rename to admin/sql/updates/mysql/3.0.5.sql diff --git a/admin/sql/updates/mysql/5.0.6.sql b/admin/sql/updates/mysql/5.0.6.sql new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/admin/sql/updates/mysql/5.0.6.sql @@ -0,0 +1 @@ + diff --git a/admin/src/Model/AjaxModel.php b/admin/src/Model/AjaxModel.php index b24ac3e..8fb8b87 100644 --- a/admin/src/Model/AjaxModel.php +++ b/admin/src/Model/AjaxModel.php @@ -184,7 +184,7 @@ class AjaxModel extends ListModel else { // download link of the latest version - $download = "https://git.vdm.dev/api/v1/repos/getBible/joomla-component/archive/" . $tags[0]->name . ".zip?access_token=" . $token; + $download = "https://git.vdm.dev/api/v1/repos/getBible/joomla-component/archive/" . $tags[0]->name . ".zip"; return ['notice' => '' . Text::_('COM_GETBIBLE_OUT_OF_DATE') . '! ' . Text::_('COM_GETBIBLE_DOWNLOAD_UPDATE') . '!']; diff --git a/getbible.xml b/getbible.xml index 9fa4cf1..84a4641 100644 --- a/getbible.xml +++ b/getbible.xml @@ -1,15 +1,15 @@ COM_GETBIBLE - 1st March, 2024 + 4th March, 2024 Llewellyn van der Merwe joomla@vdm.io https://getbible.net Copyright (C) 2015. All Rights Reserved GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html - 5.0.6 + 5.0.7 Get Bible (v.5.0.6) +

Get Bible (v.5.0.7)

Welcome to the next level of scripture engagement - The Bible for Joomla! Our purpose is to bring the Word of God to every person, in their native language, entirely free. This isn't just a typical extension; it's a groundbreaking tool developed to span language divides and deliver a rich, customizable Bible study experience to users worldwide. diff --git a/site/tmpl/app/default.php b/site/tmpl/app/default.php index 2855d84..ee03fd7 100644 --- a/site/tmpl/app/default.php +++ b/site/tmpl/app/default.php @@ -18,6 +18,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; +use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\HTML\HTMLHelper as Html; use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper; diff --git a/site/tmpl/openai/default.php b/site/tmpl/openai/default.php index 17280ac..62d5c0c 100644 --- a/site/tmpl/openai/default.php +++ b/site/tmpl/openai/default.php @@ -18,6 +18,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; +use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\HTML\HTMLHelper as Html; use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper; diff --git a/site/tmpl/search/default.php b/site/tmpl/search/default.php index 4fa3428..7a5c939 100644 --- a/site/tmpl/search/default.php +++ b/site/tmpl/search/default.php @@ -18,6 +18,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; +use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\HTML\HTMLHelper as Html; use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper; diff --git a/site/tmpl/tag/default.php b/site/tmpl/tag/default.php index 7da026a..f239775 100644 --- a/site/tmpl/tag/default.php +++ b/site/tmpl/tag/default.php @@ -18,6 +18,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; +use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\HTML\HTMLHelper as Html; use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper; diff --git a/update_server.xml b/update_server.xml index 88844d9..c80d7b9 100644 --- a/update_server.xml +++ b/update_server.xml @@ -5,10 +5,10 @@ pkg_getbible package site - 3.0.4 + 3.0.5 https://getbible.net - https://git.vdm.dev/api/v1/repos/getBible/joomla-pkg/archive/v3.0.4.zip + https://git.vdm.dev/api/v1/repos/getBible/joomla-pkg/archive/v3.0.5.zip stable @@ -143,4 +143,22 @@ https://getbible.net + + Get Bible + The Bible for Joomla + pkg_getbible + package + site + 5.0.7 + https://getbible.net + + https://git.vdm.dev/api/v1/repos/getBible/joomla-pkg/archive/v5.0.7.zip + + + stable + + Llewellyn van der Merwe + https://getbible.net + + \ No newline at end of file