Skip to content

Commit

Permalink
Joomla! 5.1.0 Beta 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bembelimen committed Mar 18, 2024
1 parent 08ed00c commit 73acb9d
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
Expand Up @@ -512,7 +512,7 @@ public function dates($idxQuery, $options)
*
* @return \stdClass[] Flat array of all nodes of a tree with the children after each parent
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
private function reduce(array $array)
{
Expand Down
Expand Up @@ -160,7 +160,7 @@ class CaptiveRenderOptions extends DataShapeObject
* Autocomplete default
*
* @var string
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
protected $autocomplete = 'off';

Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Expand Up @@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>5.1.0-beta2-dev</version>
<version>5.1.0-beta2</version>
<creationDate>2024-03</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
4 changes: 2 additions & 2 deletions administrator/modules/mod_login/services/provider.php
Expand Up @@ -19,7 +19,7 @@
/**
* The login module service provider.
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
return new class () implements ServiceProviderInterface {
/**
Expand All @@ -29,7 +29,7 @@
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function register(Container $container)
{
Expand Down
4 changes: 2 additions & 2 deletions administrator/modules/mod_login/src/Dispatcher/Dispatcher.php
Expand Up @@ -22,7 +22,7 @@
/**
* Dispatcher class for mod_login
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareInterface
{
Expand All @@ -33,7 +33,7 @@ class Dispatcher extends AbstractModuleDispatcher implements HelperFactoryAwareI
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
protected function getLayoutData()
{
Expand Down
8 changes: 4 additions & 4 deletions administrator/modules/mod_login/src/Helper/LoginHelper.php
Expand Up @@ -35,7 +35,7 @@ class LoginHelper
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function getLanguages(CMSApplicationInterface $app)
{
Expand Down Expand Up @@ -69,7 +69,7 @@ function ($a, $b) {
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function getReturnUriString()
{
Expand All @@ -88,7 +88,7 @@ public function getReturnUriString()
*
* @return string
*
* @deprecated __DEPLOY_VERSION__ will be removed in 7.0
* @deprecated 5.1.0 will be removed in 7.0
* Use the non-static method getLanguages
* Example: Factory::getApplication()->bootModule('mod_login', 'administrator')
* ->getHelper('LoginHelper')
Expand All @@ -104,7 +104,7 @@ public static function getLanguageList()
*
* @return string
*
* @deprecated __DEPLOY_VERSION__ will be removed in 7.0
* @deprecated 5.1.0 will be removed in 7.0
* Use the non-static method getReturnUriString
* Example: Factory::getApplication()->bootModule('mod_login', 'administrator')
* ->getHelper('LoginHelper')
Expand Down
Expand Up @@ -18,7 +18,7 @@
/**
* The post installation messages module service provider.
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
return new class () implements ServiceProviderInterface {
/**
Expand All @@ -28,7 +28,7 @@
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function register(Container $container)
{
Expand Down
Expand Up @@ -20,7 +20,7 @@
/**
* Dispatcher class for mod_post_installation_messages
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
class Dispatcher extends AbstractModuleDispatcher
{
Expand All @@ -29,7 +29,7 @@ class Dispatcher extends AbstractModuleDispatcher
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function dispatch()
{
Expand All @@ -44,7 +44,7 @@ public function dispatch()
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public function getLayoutData()
{
Expand Down
Expand Up @@ -221,7 +221,7 @@ function subheadScrolling() {
/**
* Watch for Dark mode changes
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
function darkModeWatch() {
const docEl = document.documentElement;
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Language/LanguageHelper.php
Expand Up @@ -72,7 +72,7 @@ public static function createLanguageList($actualLanguage, $basePath = JPATH_BAS
*
* @return array List of system languages
*
* @since __DEPLOY_VERSION__
* @since 5.1.0
*/
public static function createLanguageListInstall($actualLanguage, $basePath = JPATH_BASE, $caching = false, $installed = false)
{
Expand Down
8 changes: 4 additions & 4 deletions libraries/src/Version.php
Expand Up @@ -66,15 +66,15 @@ final class Version
* @var string
* @since 3.8.0
*/
public const EXTRA_VERSION = 'beta2-dev';
public const EXTRA_VERSION = 'beta2';

/**
* Development status.
*
* @var string
* @since 3.5
*/
public const DEV_STATUS = 'Development';
public const DEV_STATUS = 'Beta';

/**
* Code name.
Expand All @@ -90,15 +90,15 @@ final class Version
* @var string
* @since 3.5
*/
public const RELDATE = '5-March-2024';
public const RELDATE = '19-March-2024';

/**
* Release time.
*
* @var string
* @since 3.5
*/
public const RELTIME = '16:01';
public const RELTIME = '16:00';

/**
* Release timezone.
Expand Down

0 comments on commit 73acb9d

Please sign in to comment.