Skip to content

Commit 959746c

Browse files
committed
Joomla! 6.1.0 Alpha 3
1 parent ce07478 commit 959746c

File tree

13 files changed

+43
-43
lines changed

13 files changed

+43
-43
lines changed

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>6.1.0</version>
6-
<creationDate>2025-12</creationDate>
6+
<creationDate>2026-01</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>6.1.0</version>
5-
<creationDate>2025-12</creationDate>
5+
<creationDate>2026-01</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>6.1.0-alpha3-dev</version>
10-
<creationDate>2025-12</creationDate>
9+
<version>6.1.0-alpha3</version>
10+
<creationDate>2026-01</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>6.1.0.1</version>
6-
<creationDate>2025-12</creationDate>
6+
<creationDate>2026-01</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

api/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>6.1.0</version>
6-
<creationDate>2025-12</creationDate>
6+
<creationDate>2026-01</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

api/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="api">
33
<name>English (en-GB)</name>
44
<version>6.1.0</version>
5-
<creationDate>2025-12</creationDate>
5+
<creationDate>2026-01</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

installation/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="installation">
33
<name>English (United Kingdom)</name>
44
<version>6.1.0</version>
5-
<creationDate>2025-12</creationDate>
5+
<creationDate>2026-01</creationDate>
66
<author>Joomla! Project</author>
77
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

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>6.1.0</version>
6-
<creationDate>2025-12</creationDate>
6+
<creationDate>2026-01</creationDate>
77
<author>Joomla! Project</author>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>www.joomla.org</authorUrl>

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="site">
33
<name>English (en-GB)</name>
44
<version>6.1.0</version>
5-
<creationDate>2025-12</creationDate>
5+
<creationDate>2026-01</creationDate>
66
<author>Joomla! Project</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>www.joomla.org</authorUrl>

libraries/src/Console/ExtensionDisableCommand.php

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Console command to disable extensions
2828
*
29-
* @since __DEPLOY_VERSION__
29+
* @since 6.1.0
3030
*/
3131
class ExtensionDisableCommand extends AbstractCommand
3232
{
@@ -36,61 +36,61 @@ class ExtensionDisableCommand extends AbstractCommand
3636
* The default command name
3737
*
3838
* @var string
39-
* @since __DEPLOY_VERSION__
39+
* @since 6.1.0
4040
*/
4141
protected static $defaultName = 'extension:disable';
4242

4343
/**
4444
* @var InputInterface
45-
* @since __DEPLOY_VERSION__
45+
* @since 6.1.0
4646
*/
4747
private $cliInput;
4848

4949
/**
5050
* @var SymfonyStyle
51-
* @since __DEPLOY_VERSION__
51+
* @since 6.1.0
5252
*/
5353
private $ioStyle;
5454

5555
/**
5656
* Exit Code for extensions already enabled\disabled
57-
* @since __DEPLOY_VERSION__
57+
* @since 6.1.0
5858
*/
5959
public const DISABLE_NOCHANGE = 3;
6060

6161
/**
6262
* Exit Code for extensions enable\disable failure
63-
* @since __DEPLOY_VERSION__
63+
* @since 6.1.0
6464
*/
6565
public const DISABLE_FAILED = 1;
6666

6767
/**
6868
* Exit Code for disable parent template with child failure
69-
* @since __DEPLOY_VERSION__
69+
* @since 6.1.0
7070
*/
7171
public const DISABLE_WITHCHILD_NOT_PERMITTED = 5;
7272

7373
/**
7474
* Exit Code for disable home template failure
75-
* @since __DEPLOY_VERSION__
75+
* @since 6.1.0
7676
*/
7777
public const DISABLE_HOME_NOT_PERMITTED = 6;
7878

7979
/**
8080
* Exit Code for extensions protected enable\disable failure
81-
* @since __DEPLOY_VERSION__
81+
* @since 6.1.0
8282
*/
8383
public const DISABLE_PROTECTED = 4;
8484

8585
/**
8686
* Exit Code for extensions not found
87-
* @since __DEPLOY_VERSION__
87+
* @since 6.1.0
8888
*/
8989
public const DISABLE_NOT_FOUND = 2;
9090

9191
/**
9292
* Exit Code for extensions enable\disable success
93-
* @since __DEPLOY_VERSION__
93+
* @since 6.1.0
9494
*/
9595
public const DISABLE_SUCCESSFUL = 0;
9696

@@ -99,7 +99,7 @@ class ExtensionDisableCommand extends AbstractCommand
9999
*
100100
* @param DatabaseInterface $db The database
101101
*
102-
* @since __DEPLOY_VERSION__
102+
* @since 6.1.0
103103
*/
104104
public function __construct(DatabaseInterface $db)
105105
{
@@ -116,7 +116,7 @@ public function __construct(DatabaseInterface $db)
116116
*
117117
* @return void
118118
*
119-
* @since __DEPLOY_VERSION__
119+
* @since 6.1.0
120120
*
121121
*/
122122
private function configureIO(InputInterface $input, OutputInterface $output): void
@@ -130,7 +130,7 @@ private function configureIO(InputInterface $input, OutputInterface $output): vo
130130
*
131131
* @return void
132132
*
133-
* @since __DEPLOY_VERSION__
133+
* @since 6.1.0
134134
*/
135135
protected function configure(): void
136136
{
@@ -157,7 +157,7 @@ protected function configure(): void
157157
*
158158
* @return integer The command exit code
159159
*
160-
* @since __DEPLOY_VERSION__
160+
* @since 6.1.0
161161
*/
162162
protected function doExecute(InputInterface $input, OutputInterface $output): int
163163
{

0 commit comments

Comments
 (0)