Update on v1.2.1 (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 8d4c207e1f
commit a15885b8fe
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
3 changed files with 8 additions and 3 deletions

View File

@ -10,7 +10,7 @@ Display the daily scripture from [https://git.vdm.dev/christian/daily-scripture]
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [Dailyscripture](https://getbible.net) + *Name*: [Dailyscripture](https://getbible.net)
+ *First Build*: 3rd December, 2015 + *First Build*: 3rd December, 2015
+ *Last Build*: 4th December, 2023 + *Last Build*: 23rd December, 2023
+ *Version*: 1.2.1 + *Version*: 1.2.1
+ *Copyright*: Copyright (C) 2015. All Rights Reserved + *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html + *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"?> <?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="3.10" client="site" method="upgrade"> <extension type="module" version="3.10" client="site" method="upgrade">
<name>MOD_DAILYSCRIPTURE</name> <name>MOD_DAILYSCRIPTURE</name>
<creationDate>4th December, 2023</creationDate> <creationDate>23rd December, 2023</creationDate>
<author>Llewellyn van der Merwe</author> <author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail> <authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://getbible.net</authorUrl> <authorUrl>https://getbible.net</authorUrl>

View File

@ -18,6 +18,11 @@
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access'); 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;
/** /**
* Dailyscripture script file. * Dailyscripture script file.
* *
@ -37,7 +42,7 @@ class mod_DailyScriptureInstallerScript
public function preflight($route, $adapter) public function preflight($route, $adapter)
{ {
// get application // get application
$app = JFactory::getApplication(); $app = Factory::getApplication();
// the default for both install and update // the default for both install and update
$jversion = new JVersion(); $jversion = new JVersion();