Skip to content

Commit dcd3720

Browse files
committed
Bump version to 1.4.2, add changelog entry, update copyright note to include 2021
1 parent f5342a7 commit dcd3720

10 files changed

Lines changed: 20 additions & 10 deletions

File tree

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.4.2 (2021-04-20)
2+
- Joomla 4 Compatibility
3+
- Language: Whitelist -> Allow list (en/de)
4+
- Component:
5+
- Default sort order descending by date
6+
- Warn if plugin is not enabled
7+
- Plugin:
8+
- Less verbose log output where unnecessary
9+
- Fix problems with usernames > 25 characters
10+
111
1.4.1 (2017-02-01)
212
- JED checker error fixes
313

bfstop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined('_JEXEC') or die;

bfstop.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<author>Bernhard Froehler</author>
55
<description>PLG_SYSTEM_BFSTOP_DESC</description>
66
<creationDate>November 2012</creationDate>
7-
<copyright>Copyright (C) 2012-2018 by Bernhard Froehler</copyright>
7+
<copyright>Copyright (C) 2012-2021 by Bernhard Froehler</copyright>
88
<license>GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html</license>
99
<homepage>https://github.com/codeling/bfstop</homepage>
1010
<authorEmail>bfstop@bfroehler.info</authorEmail>
1111
<authorUrl>https://github.com/codeling/bfstop</authorUrl>
12-
<version>1.4.1</version>
12+
<version>1.4.2</version>
1313
<files>
1414
<filename plugin="bfstop">bfstop.php</filename>
1515
<filename>index.html</filename>

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ langfiles="language"
1515
docs="CHANGELOG LICENSE.txt README"
1616
plgtype="system"
1717
langs="de-DE en-GB"
18-
version=1.4.1
18+
version=1.4.2
1919

2020
if [ "$1" == "zip" ]
2121
then

helpers/crypto.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined( '_JEXEC' ) or die;

helpers/db.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined( '_JEXEC' ) or die;

helpers/htaccess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined( '_JEXEC' ) or die;

helpers/log.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined('_JEXEC') or die;

helpers/notify.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
defined( '_JEXEC' ) or die;

unittests/cryptotest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* @package BFStop Plugin (bfstop) for Joomla! >=2.5
44
* @author Bernhard Froehler
5-
* @copyright (C) 2012-2018 Bernhard Froehler
5+
* @copyright (C) 2012-2021 Bernhard Froehler
66
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
77
**/
88
require_once('helpers/crypto.php');

0 commit comments

Comments
 (0)