Skip to content

Commit 2cef3f2

Browse files
Merge pull request #103 from pluginkollektiv/develop
Release 1.4.2
2 parents fbc3614 + b9c9afd commit 2cef3f2

14 files changed

+5409
-659
lines changed

.github/workflows/wordpress-plugin-asset-update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- uses: php-actions/composer@v4
12+
- uses: php-actions/composer@v5
1313
- name: WordPress.org plugin asset/readme update
1414
uses: 10up/action-wordpress-plugin-asset-update@stable
1515
env:

.github/workflows/wordpress-plugin-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- uses: php-actions/composer@v4
13+
- uses: php-actions/composer@v5
1414
- name: WordPress Plugin Deploy
1515
uses: 10up/action-wordpress-plugin-deploy@stable
1616
env:

.stylelintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "stylelint-config-wordpress",
2+
"extends": "@wordpress/stylelint-config",
33
"rules": {
44
"selector-id-pattern": null
55
}

.wordpress-org/screenshot-1.png

-13.3 KB
Loading

.wordpress-org/screenshot-2.png

-19.8 KB
Loading

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### 1.4.2 ###
4+
* Drop recursive check on option that failed in several scenarios (#96) (#97)
5+
* Drop check for base64 encoded strings which did not work properly in al cases (#100)
6+
* Use WP 5.7 color palette for the UI (#99)
7+
38
### 1.4.1 ###
49
* Fix some spelling mistakes and correct translations (#85)
510
* Fix file name sanitization in manual theme scan causing errors to be not shown in the admin area (#88, #89)

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW
55
* Requires at least: 4.1
66
* Requires PHP: 5.2
7-
* Tested up to: 5.6
8-
* Stable tag: 1.4.1
7+
* Tested up to: 5.7
8+
* Stable tag: 1.4.2
99
* License: GPLv2 or later
1010
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -41,6 +41,11 @@ A complete documentation is available on the [AntiVirus website](https://antivir
4141

4242
## Changelog ##
4343

44+
### 1.4.2 ###
45+
* Drop recursive check on option that failed in several scenarios (#96, #97)
46+
* Drop check for base64 encoded strings which did not work properly in al cases (#100)
47+
* Use WP 5.7 color palette for the UI (#99)
48+
4449
### 1.4.1 ###
4550
* Fix some spelling mistakes and correct translations (#85)
4651
* Fix file name sanitization in manual theme scan causing errors to be not shown in the admin area (#88, #89)
@@ -70,14 +75,14 @@ A complete documentation is available on the [AntiVirus website](https://antivir
7075
* added German formal translation
7176
* updated, translated + formatted README.md
7277
* updated expired link URLs in plugin and languages files
73-
* updated [plugin authors](https://gist.github.com/glueckpress/f058c0ab973d45a72720)
78+
* updated [plugin authors](https://pluginkollektiv.org/de/hallo-welt/)
7479

7580
For the complete changelog, check out our [GitHub repository](https://github.com/pluginkollektiv/antivirus).
7681

7782
## Upgrade Notice ##
7883

79-
### 1.4.0 ###
80-
This is a feature release which integrates the functionality from _Checksum Verifier_ plugin.
84+
### 1.4.2 ###
85+
This is a bugfix release removing two checks of the theme scan causing false positives.
8186

8287
## Screenshots ##
8388
1. WordPress AntiVirus settings

antivirus.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Text Domain: antivirus
99
* License: GPLv2 or later
1010
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
11-
* Version: 1.4.1
11+
* Version: 1.4.2
1212
*
1313
* @package AntiVirus
1414
*/

0 commit comments

Comments
 (0)