Skip to content

Commit

Permalink
prepare release of v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Dec 9, 2020
1 parent 1a621b8 commit a5e4225
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 10 deletions.
29 changes: 23 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# Statify Filter #
* Contributors: Stefan Kalscheuer
* Requires at least: 4.7
* Tested up to: 5.5
* Tested up to: 5.6
* Requires PHP: 5.5
* Stable tag: 1.5.2
* Stable tag: 1.6.0
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -28,11 +28,14 @@ Add a list of target pages (e.g. _/test/page/_, _/?page_id=123_) that will be ex
#### IP Filter ####
Add a list of IP addresses or subnets (e.g. _192.0.2.123_, _198.51.100.0/24_, _2001:db8:a0b:12f0::/64_).

#### User Agent Filter ####
Add a list of (partial) user agent strings to exclude (e.g. _curl_, _my/bot_, _Firefox_).

#### CleanUp Database ####
Filters can be applied to data stored in database after modifying filter rules or for one-time clean-up.

#### Compatibility ####
This plugin requires Statify to be installed. The extension has been tested with Statify up to version 1.7
This plugin requires Statify to be installed. The extension has been tested with Statify up to version 1.8
The plugin is capable of handling multisite installations.

### Support & Contributions ###
Expand Down Expand Up @@ -75,9 +78,9 @@ No. The privacy policy of _Statify_ is untouched. Data is only processed, not st
### Are regular expression filters possible? ###
Yes, it is. Just select regular expressions (case-sensitive or insensitive) as matching method instead of exact or keyword match.

### Why is IP filtering only available as live filter? ###
### Why is IP and User Agent filtering only available as live filter? ###
As you might know, _Statify_ does not store any personal information, including IP addresses in the database.
Because of this, an IP filter can only be applied while processing the request and not afterwards.
Because of this, these filters can only be applied while processing the request and not afterwards.

### Can whole IP subnet be blocked? ###
Yes. The plugin features subnet filters using CIDR notation.
Expand All @@ -88,11 +91,25 @@ Same for IPv6 prefixes like _2001:db8:a0b:12f0::/64_.
## Screenshots ##
1. Statify Filter settings page

## Upgrade Notice ##

### 1.6.0 ###
The plugin has been renamed from _Statify Blacklist_ to _Statify Filter_.
This does not imply any changes in functionality, rather than using a better wording.

In addition, there is a new filter by User Agent along with some minor corrections.
This version should be compatible with latest WordPress 5.6.


## Changelog ##

### 1.6.0 / unreleased ###
### 1.6.0 / 09.12.2020 ###

Plugin renamed to _Statify Filter_.

* Minor accessibility fixes on settings page
* Introduced new user agent filter (#20)
* Declared compatibility with WordPress 5.6

### 1.5.2 / 03.09.2020 ###
* Minor translation updates
Expand Down
2 changes: 1 addition & 1 deletion RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Stefan Kalscheuer <[email protected]>
*
* @package Statify_Blacklist
* @version 1.5.2
* @version 1.0.0
*/

use Robo\Exception\TaskException;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stklcode/statify-blacklist",
"version": "1.6.0-alpha",
"version": "1.6.0",
"description": "A filter extension for the famous Statify WordPress plugin",
"keywords": [
"wordpress",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "statify-blacklist",
"version": "1.6.0-alpha",
"version": "1.6.0",
"description": "A filter extension for the famous Statify WordPress plugin",
"author": "Stefan Kalscheuer",
"license": "GPL-2.0+"
Expand Down
2 changes: 1 addition & 1 deletion statify-blacklist.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Statify Filter
* Plugin URI: https://wordpress.org/plugins/statify-blacklist/
* Description: Extension for the Statify plugin to add customizable filters. (formerly "Statify Blacklist)
* Version: 1.6.0-alpha
* Version: 1.6.0
* Author: Stefan Kalscheuer (@stklcode)
* Author URI: https://www.stklcode.de
* Text Domain: statify-blacklist
Expand Down

0 comments on commit a5e4225

Please sign in to comment.