Release of v3.1.0

Fix missing Joomla__aeb8e463_291f_4445_9ac4_34b637c12dbd__Power.
This commit is contained in:
Robot 2024-04-29 10:44:12 +02:00
parent d9a6c983bc
commit d9ba1b687b
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
8 changed files with 39 additions and 17 deletions

View File

@ -1,3 +1,7 @@
# v3.1.0
- Fix missing Joomla__aeb8e463_291f_4445_9ac4_34b637c12dbd__Power.
# v3.0.9
- Add PHP check on installation.

View File

@ -1,4 +1,4 @@
# Get Bible (3.0.9)
# Get Bible (3.1.0)
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/master/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*: 27th April, 2024
+ *Version*: 3.0.9
+ *Last Build*: 29th April, 2024
+ *Version*: 3.1.0
+ *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*: **207156**
+ *File count*: **1738**
+ *Line count*: **207179**
+ *File count*: **1739**
+ *Folder count*: **150**
**381 Hours** or **48 Eight Hour Days** (the actual time the author spent)

View File

@ -1,4 +1,4 @@
# Get Bible (3.0.9)
# Get Bible (3.1.0)
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/master/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*: 27th April, 2024
+ *Version*: 3.0.9
+ *Last Build*: 29th April, 2024
+ *Version*: 3.1.0
+ *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*: **207156**
+ *File count*: **1738**
+ *Line count*: **207179**
+ *File count*: **1739**
+ *Folder count*: **150**
**381 Hours** or **48 Eight Hour Days** (the actual time the author spent)

View File

@ -0,0 +1 @@

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.10" method="upgrade">
<name>COM_GETBIBLE</name>
<creationDate>27th April, 2024</creationDate>
<creationDate>29th April, 2024</creationDate>
<author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://getbible.net</authorUrl>
<copyright>Copyright (C) 2015. All Rights Reserved</copyright>
<license>GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html</license>
<version>3.0.9</version>
<version>3.1.0</version>
<description><![CDATA[
<h1>Get Bible (v.3.0.9)</h1>
<h1>Get Bible (v.3.1.0)</h1>
<div style="clear: both;"></div>
<p>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.

View File

@ -1586,7 +1586,7 @@ class Com_GetbibleInstallerScript
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://getbible.net" title="Get Bible">
<img src="components/com_getbible/assets/images/vdm-component.jpg"/>
</a>
<h3>Upgrade to Version 3.0.9 Was Successful! Let us know if anything is not working as expected.</h3></div>';
<h3>Upgrade to Version 3.1.0 Was Successful! Let us know if anything is not working as expected.</h3></div>';
// Set db if not set already.
if (!isset($db))

View File

@ -43,8 +43,7 @@ class GetbibleRouter extends JComponentRouterBase
{
$segments = [];
$view = $query['view'] ?? 'app';
$this->defaultTranslation ??= Joomla___aeb8e463_291f_4445_9ac4_34b637c12dbd___Power::getParams('com_getbible')->get('default_translation', 'kjv');
$this->defaultTranslation ??= ComponentHelper::getParams('com_getbible')->get('default_translation', 'kjv');
if ($view === 'search')
{
$segments[0] = 'search';
@ -216,7 +215,7 @@ class GetbibleRouter extends JComponentRouterBase
$vars = [];
$vars['view'] = 'app';
$this->defaultTranslation ??= Joomla___aeb8e463_291f_4445_9ac4_34b637c12dbd___Power::getParams('com_getbible')->get('default_translation', 'kjv');
$this->defaultTranslation ??= ComponentHelper::getParams('com_getbible')->get('default_translation', 'kjv');
$key = 0;
$vars['t'] = $segments[$key] ?? '';

View File

@ -719,4 +719,22 @@
<maintainerurl>https://getbible.net</maintainerurl>
<targetplatform name="joomla" version="3.*"/>
</update>
<update>
<name>Get Bible</name>
<description>The Bible for Joomla</description>
<element>pkg_getbible</element>
<type>package</type>
<client>site</client>
<version>3.1.0</version>
<infourl title="Get Bible!">https://getbible.net</infourl>
<downloads>
<downloadurl type="full" format="zip">https://git.vdm.dev/api/v1/repos/getBible/joomla-pkg/archive/v3.1.0.zip</downloadurl>
</downloads>
<tags>
<tag>stable</tag>
</tags>
<maintainer>Llewellyn van der Merwe</maintainer>
<maintainerurl>https://getbible.net</maintainerurl>
<targetplatform name="joomla" version="3.*"/>
</update>
</updates>