29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 23:02:55 +00:00

Bump to 4.1-alpha3

This commit is contained in:
Benjamin Trenkle 2021-11-22 21:33:38 +01:00
parent ba92750f46
commit 3ef1b15fe7
No known key found for this signature in database
GPG Key ID: F6BBF5456D4762FF
18 changed files with 24 additions and 24 deletions

View File

@ -32,7 +32,7 @@ class CategoriesModel extends ListModel
* Does an association exist? Caches the result of getAssoc().
*
* @var boolean|null
* @since __DEPLOY_VERSION__
* @since 4.0.5
*/
private $hasAssociation;

View File

@ -71,7 +71,7 @@ class CategoryModel extends AdminModel
* Does an association exist? Caches the result of getAssoc().
*
* @var boolean|null
* @since __DEPLOY_VERSION__
* @since 4.0.5
*/
private $hasAssociation;

View File

@ -119,7 +119,7 @@ class ContactController extends FormController
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*/
protected function postSaveHook(BaseDatabaseModel $model, $validData = [])
{

View File

@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -2,7 +2,7 @@
<metafile client="administrator">
<name>English (en-GB)</name>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -6,8 +6,8 @@
<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>4.1.0-dev</version>
<creationDate>October 2021</creationDate>
<version>4.1.0-alpha3</version>
<creationDate>November 2021</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
<scriptfile>administrator/components/com_admin/script.php</scriptfile>

View File

@ -3,7 +3,7 @@
<name>English (en-GB) Language Pack</name>
<packagename>en-GB</packagename>
<version>4.1.0.1</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -2,7 +2,7 @@
<metafile client="api">
<name>English (en-GB)</name>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -2,7 +2,7 @@
<metafile client="installation">
<name>English (United Kingdom)</name>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

View File

@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -2,7 +2,7 @@
<metafile client="site">
<name>English (en-GB)</name>
<version>4.1.0</version>
<creationDate>October 2021</creationDate>
<creationDate>November 2021</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>

View File

@ -66,7 +66,7 @@ class ListModel extends BaseDatabaseModel implements ListModelInterface
* The cache ID used when last populating $this->query
*
* @var null|string
* @since __DEPLOY_VERSION__
* @since 4.0.5
*/
protected $lastQueryStoreId = null;

View File

@ -46,7 +46,7 @@ abstract class Table extends CMSObject implements TableInterface, DispatcherAwar
* Table fields cache
*
* @var array
* @since __DEPLOY_VERSION__
* @since 4.0.5
*/
private static $tableFields;

View File

@ -16,7 +16,7 @@ namespace Joomla\CMS\Toolbar\Button;
* @method self targetclass(string $value)
* @method string getTargetclass()
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*/
class InlinehelpButton extends BasicButton
{
@ -27,7 +27,7 @@ class InlinehelpButton extends BasicButton
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*/
protected function prepareOptions(array &$options)
{
@ -54,7 +54,7 @@ class InlinehelpButton extends BasicButton
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*
* @deprecated 5.0 Use render() instead.
*/
@ -79,7 +79,7 @@ class InlinehelpButton extends BasicButton
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*/
protected static function getAccessors(): array
{

View File

@ -166,7 +166,7 @@ abstract class ToolbarHelper
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 4.1.0
*/
public static function inlinehelp(string $class = "hide-aware-inline-help")
{

View File

@ -61,7 +61,7 @@ final class Version
* @var string
* @since 3.8.0
*/
const EXTRA_VERSION = 'dev';
const EXTRA_VERSION = 'alpha3';
/**
* Development status.
@ -69,7 +69,7 @@ final class Version
* @var string
* @since 3.5
*/
const DEV_STATUS = 'Development';
const DEV_STATUS = 'Alpha';
/**
* Code name.
@ -85,7 +85,7 @@ final class Version
* @var string
* @since 3.5
*/
const RELDATE = '26-October-2021';
const RELDATE = '23-November-2021';
/**
* Release time.

View File

@ -326,7 +326,7 @@ class MediaListPage extends AdminListPage
* The search input field.
*
* @var array
* @since __DEPLOY_VERSION__
* @since 4.0.5
*/
public static $searchInputField = ['id' => 'media_search'];