Skip to content

Commit 5d64e9a

Browse files
committed
Release Joomla! 5.3.0 Alpha 2
1 parent f257ff6 commit 5d64e9a

File tree

19 files changed

+47
-47
lines changed

19 files changed

+47
-47
lines changed

administrator/components/com_scheduler/src/Controller/LogsController.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* Logs list controller class.
2424
*
25-
* @since __DEPLOY_VERSION__
25+
* @since 5.3.0
2626
*/
2727
class LogsController extends AdminController
2828
{
@@ -31,7 +31,7 @@ class LogsController extends AdminController
3131
*
3232
* @var string
3333
*
34-
* @since __DEPLOY_VERSION__
34+
* @since 5.3.0
3535
*/
3636
protected $text_prefix = 'COM_SCHEDULER_LOGS';
3737

@@ -44,7 +44,7 @@ class LogsController extends AdminController
4444
*
4545
* @return \Joomla\CMS\MVC\Model\BaseDatabaseModel
4646
*
47-
* @since __DEPLOY_VERSION__
47+
* @since 5.3.0
4848
*/
4949
public function getModel($name = 'Logs', $prefix = 'Administrator', $config = ['ignore_request' => true])
5050
{
@@ -56,7 +56,7 @@ public function getModel($name = 'Logs', $prefix = 'Administrator', $config = ['
5656
*
5757
* @return void
5858
*
59-
* @since __DEPLOY_VERSION__
59+
* @since 5.3.0
6060
*/
6161
public function purge()
6262
{
@@ -81,7 +81,7 @@ public function purge()
8181
*
8282
* @return void
8383
*
84-
* @since __DEPLOY_VERSION__
84+
* @since 5.3.0
8585
*/
8686
public function delete(): void
8787
{

administrator/components/com_scheduler/src/Field/ExitCodeField.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@
1919
/**
2020
* A predefined list field with all possible states for a com_scheduler entry.
2121
*
22-
* @since __DEPLOY_VERSION__
22+
* @since 5.3.0
2323
*/
2424
class ExitCodeField extends PredefinedlistField
2525
{
2626
/**
2727
* The form field type.
2828
*
2929
* @var string
30-
* @since __DEPLOY_VERSION__
30+
* @since 5.3.0
3131
*/
3232
public $type = 'exitCode';
3333

3434
/**
3535
* Available states
3636
*
3737
* @var string[]
38-
* @since __DEPLOY_VERSION__
38+
* @since 5.3.0
3939
*/
4040
protected $predefinedOptions = [
4141
5 => 'COM_SCHEDULER_EXIT_CODE_FAILED',

administrator/components/com_scheduler/src/Model/LogsModel.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Supporting a list of logs.
2626
*
27-
* @since __DEPLOY_VERSION__
27+
* @since 5.3.0
2828
*/
2929
class LogsModel extends ListModel
3030
{
@@ -35,7 +35,7 @@ class LogsModel extends ListModel
3535
* @param MVCFactoryInterface $factory The factory.
3636
*
3737
* @see \JControllerLegacy
38-
* @since __DEPLOY_VERSION__
38+
* @since 5.3.0
3939
*/
4040
public function __construct($config = [], ?MVCFactoryInterface $factory = null)
4141
{
@@ -61,7 +61,7 @@ public function __construct($config = [], ?MVCFactoryInterface $factory = null)
6161
*
6262
* @return boolean result of operation
6363
*
64-
* @since __DEPLOY_VERSION__
64+
* @since 5.3.0
6565
*/
6666
public function purge()
6767
{
@@ -84,7 +84,7 @@ public function purge()
8484
*
8585
* @return void
8686
*
87-
* @since __DEPLOY_VERSION__
87+
* @since 5.3.0
8888
*/
8989
protected function populateState($ordering = 'a.id', $direction = 'desc')
9090
{
@@ -107,7 +107,7 @@ protected function populateState($ordering = 'a.id', $direction = 'desc')
107107
*
108108
* @return string A store id.
109109
*
110-
* @since __DEPLOY_VERSION__
110+
* @since 5.3.0
111111
*/
112112
protected function getStoreId($id = '')
113113
{
@@ -125,7 +125,7 @@ protected function getStoreId($id = '')
125125
*
126126
* @return \JDatabaseQuery
127127
*
128-
* @since __DEPLOY_VERSION__
128+
* @since 5.3.0
129129
*/
130130
protected function getListQuery()
131131
{
@@ -227,7 +227,7 @@ public function delete($pks)
227227
*
228228
* @return boolean True if the record may be deleted
229229
*
230-
* @since __DEPLOY_VERSION__
230+
* @since 5.3.0
231231
* @throws \Exception
232232
*/
233233
protected function canDelete($record): bool
@@ -245,7 +245,7 @@ protected function canDelete($record): bool
245245
*
246246
* @return void
247247
*
248-
* @since __DEPLOY_VERSION__
248+
* @since 5.3.0
249249
* @throws Exception
250250
*/
251251
public function logTask(array $data): void

administrator/components/com_scheduler/src/Table/LogsTable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Logs Table class.
2323
*
24-
* @since __DEPLOY_VERSION__
24+
* @since 5.3.0
2525
*/
2626
class LogsTable extends Table
2727
{
@@ -31,7 +31,7 @@ class LogsTable extends Table
3131
* @param DatabaseDriver $db Database connector object
3232
* @param ?DispatcherInterface $dispatcher Event dispatcher for this table
3333
*
34-
* @since __DEPLOY_VERSION__
34+
* @since 5.3.0
3535
*/
3636
public function __construct(DatabaseDriver $db, ?DispatcherInterface $dispatcher = null)
3737
{

administrator/components/com_scheduler/src/Table/TaskTable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ protected function _getAssetName(): string
172172
*
173173
* @return string
174174
*
175-
* @since __DEPLOY_VERSION__
175+
* @since 5.3.0
176176
*/
177177
protected function _getAssetTitle(): string
178178
{
@@ -191,7 +191,7 @@ protected function _getAssetTitle(): string
191191
*
192192
* @return integer
193193
*
194-
* @since __DEPLOY_VERSION__
194+
* @since 5.3.0
195195
*/
196196
protected function _getAssetParentId(?Table $table = null, $id = null): int
197197
{

administrator/components/com_scheduler/src/View/Logs/HtmlView.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,47 +28,47 @@
2828
/**
2929
* View class for a list of logs.
3030
*
31-
* @since __DEPLOY_VERSION__
31+
* @since 5.3.0
3232
*/
3333
class HtmlView extends BaseHtmlView
3434
{
3535
/**
3636
* The search tools form
3737
*
3838
* @var Form
39-
* @since __DEPLOY_VERSION__
39+
* @since 5.3.0
4040
*/
4141
public $filterForm;
4242

4343
/**
4444
* The active search filters
4545
*
4646
* @var array
47-
* @since __DEPLOY_VERSION__
47+
* @since 5.3.0
4848
*/
4949
public $activeFilters = [];
5050

5151
/**
5252
* An array of items
5353
*
5454
* @var array
55-
* @since __DEPLOY_VERSION__
55+
* @since 5.3.0
5656
*/
5757
protected $items = [];
5858

5959
/**
6060
* The pagination object
6161
*
6262
* @var Pagination
63-
* @since __DEPLOY_VERSION__
63+
* @since 5.3.0
6464
*/
6565
protected $pagination;
6666

6767
/**
6868
* The model state
6969
*
7070
* @var Registry
71-
* @since __DEPLOY_VERSION__
71+
* @since 5.3.0
7272
*/
7373
protected $state;
7474

@@ -79,7 +79,7 @@ class HtmlView extends BaseHtmlView
7979
*
8080
* @return void
8181
*
82-
* @since __DEPLOY_VERSION__
82+
* @since 5.3.0
8383
* @throws \Exception
8484
*/
8585
public function display($tpl = null): void
@@ -106,7 +106,7 @@ public function display($tpl = null): void
106106
*
107107
* @return void
108108
*
109-
* @since __DEPLOY_VERSION__
109+
* @since 5.3.0
110110
*/
111111
protected function addToolbar(): void
112112
{

administrator/language/en-GB/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>English (en-GB)</name>
44
<tag>en-GB</tag>
55
<version>5.3.0</version>
6-
<creationDate>2024-11</creationDate>
6+
<creationDate>2024-12</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

administrator/language/en-GB/langmetadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metafile client="administrator">
33
<name>English (en-GB)</name>
44
<version>5.3.0</version>
5-
<creationDate>2024-11</creationDate>
5+
<creationDate>2024-12</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

administrator/manifests/files/joomla.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<authorUrl>www.joomla.org</authorUrl>
77
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
9-
<version>5.3.0-alpha2-dev</version>
10-
<creationDate>2024-11</creationDate>
9+
<version>5.3.0-alpha2</version>
10+
<creationDate>2024-12</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

1313
<scriptfile>administrator/components/com_admin/script.php</scriptfile>

administrator/manifests/packages/pkg_en-GB.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>English (en-GB) Language Pack</name>
44
<packagename>en-GB</packagename>
55
<version>5.3.0.1</version>
6-
<creationDate>2024-11</creationDate>
6+
<creationDate>2024-12</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

0 commit comments

Comments
 (0)