Update on v3.0.3 (beta for next version)

Here's an update on the current version, which includes changes towards the next release still in beta.
This commit is contained in:
Robot 2023-12-23 18:05:05 +02:00
parent 8bdfff8535
commit 5afeffde4f
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
3 changed files with 8 additions and 3 deletions

View File

@ -29,7 +29,7 @@ Ading the [getBible Loader Script](https://git.vdm.dev/getBible/loader) the the
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [getBible Loader](https://getbible.net)
+ *First Build*: 3rd December, 2015
+ *Last Build*: 4th December, 2023
+ *Last Build*: 23rd December, 2023
+ *Version*: 3.0.3
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<extension type="plugin" version="3.10" group="system" method="upgrade">
<name>PLG_SYSTEM_GETBIBLELOADER</name>
<creationDate>4th December, 2023</creationDate>
<creationDate>23rd December, 2023</creationDate>
<author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://getbible.net</authorUrl>

View File

@ -18,6 +18,11 @@
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Filesystem\Folder;
/**
* System - GetBibleLoader script file.
*
@ -37,7 +42,7 @@ class plgSystemGetBibleLoaderInstallerScript
public function preflight($route, $adapter)
{
// get application
$app = JFactory::getApplication();
$app = Factory::getApplication();
// the default for both install and update
$jversion = new JVersion();