Skip to content

Commit

Permalink
Merge pull request #195 from pluginkollektiv/issue-191
Browse files Browse the repository at this point in the history
Get README ready for beta1
  • Loading branch information
Simon Kraft authored May 13, 2018
2 parents ae962c2 + 27fc9f2 commit 53ba8ef
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 26 deletions.
24 changes: 16 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
## Changelog ##

### 2.7.2 ###
### 2.8.0 ###

* **English**
* PHP 7.2 compatibility
* Removed stopforumspam.com to avoid potential GDPR violation
* Improves IP handling to comply with GDPR
* Improves PHP7.2 compatibility improved
* Fixes small bug on mobile views
* HTTPS for stopforumspam.com requests
* Minor interface improvements
* Remove old russian and Dutch translation files
* For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/4?closed=1

* **Deutsch**
- PHP 7.2 Kompatibilität hergestellt
- Kleiner CSS Bugfix für mobile Ansichten
- HTTPS-Verbindugn für stopforumspam.com-Anfragen
- Entfernt stopforumspam.com zur Vorbeugung möglicher DSGVO-Verletzungen
- Verändert den Umgang mit IP-Adressen um der DSGVO zu entsprechen
- Verbessert PHP7.2-Kompatibilität
- Behebt einen CSS-Bugfix der mobilen Darstellung
- Verberesserungen an der Benutzeroberfläche
- Entfernt alte russische und holländische Sprachversionen
- Mehr Details: https://github.com/pluginkollektiv/antispam-bee/milestone/4?closed=1

### 2.7.1 ###

Expand All @@ -33,7 +41,7 @@
* **English**
* Country check is back again (thanks to Sergej Müller for his amazing work and the service page)
* Improved Honeypot
* Language check through Google Translate API is back again (thanks to Simon Kraft of https://moenus.net/ for offering to cover the costs)
* Language check through Google Translate API is back again (thanks to [Simon Kraft](https://simonkraft.de/) for offering to cover the costs)
* More default Regexes
* Unit Test Framework
* Accessibility and GUI improvements
Expand All @@ -44,7 +52,7 @@
* **Deutsch**
* Die Länderprüfung ist wieder zurück (dank an Sergej Müller für seine fantastische Arbeit und die Service-Seite)
* Der Honeypot wurde verbessert
* Die Sprachenprüfung über die Google Translate API ist wieder zurück (Dank an Simon Kraft von https://moenus.net/ weil er sich angeboten hat die Kosten zu übernehmen)
* Die Sprachenprüfung über die Google Translate API ist wieder zurück (Dank an [Simon Kraft](https://simonkraft.de/), der sich angeboten hat, die Kosten zu übernehmen)
* Mehr Standard-Regexe
* Verbesserungen an Barrierefreiheit und Benutzer-Oberfläche
* Eine [englische Dokumentation](https://github.com/pluginkollektiv/antispam-bee/wiki) ist jetzt verfügbar. Einige Korrekturen in der deutschen Dokumentation.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Antispam Bee #

Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes privacy hints and protection against trackback spam.
Antispam plugin with a sophisticated tool set for effective day to day comment and trackback spam-fighting. Build with data protection and privacy in mind.

## Description ##
Say Goodbye to comment spam on your WordPress blog or website. *Antispam Bee* blocks spam comments and trackbacks effectively and without captchas. It is free of charge, ad-free and compliant with European data privacy standards.
Expand Down Expand Up @@ -33,11 +33,11 @@ Say Goodbye to comment spam on your WordPress blog or website. *Antispam Bee* bl
* If you want to help us translate this plugin you can do so [on WordPress Translate](https://translate.wordpress.org/projects/wp-plugins/antispam-bee).

### Donate
[Donate for us via Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8CH5FPR88QYML)
[Donate for us via Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW)

### Credits ###
* Author: [Sergej Müller](https://sergejmueller.github.io/)
* Maintainers: [pluginkollektiv](http://pluginkollektiv.org)
* Maintainers: [pluginkollektiv](https://pluginkollektiv.org)

## Installation ##
* If you don’t know how to install a plugin for WordPress, [here’s how](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins).
Expand Down
8 changes: 4 additions & 4 deletions antispam_bee.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
/*
* Plugin Name: Antispam Bee
* Description: Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes privacy hints and protection against trackback spam.
* Description: Antispam plugin with a sophisticated tool set for effective day to day comment and trackback spam-fighting. Build with data protection and privacy in mind.
* Author: pluginkollektiv
* Author URI: http://pluginkollektiv.org
* Author URI: https://pluginkollektiv.org
* Plugin URI: https://wordpress.org/plugins/antispam-bee/
* Text Domain: antispam-bee
* Domain Path: /lang
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Version: 2.7.1
* Version: 2.8.0-beta1
*/

/*
Expand Down Expand Up @@ -532,7 +532,7 @@ public static function init_row_meta($input, $file)
return array_merge(
$input,
array(
'<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8CH5FPR88QYML" target="_blank" rel="noopener noreferrer">' . esc_html__( 'Donate', 'antispam-bee' ) . '</a>',
'<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW" target="_blank" rel="noopener noreferrer">' . esc_html__( 'Donate', 'antispam-bee' ) . '</a>',
'<a href="https://wordpress.org/support/plugin/antispam-bee" target="_blank" rel="noopener noreferrer">' . esc_html__( 'Support', 'antispam-bee' ) . '</a>',
)
);
Expand Down
2 changes: 1 addition & 1 deletion inc/gui.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public static function options_page() { ?>

<div class="ab-column ab-column--submit-service">
<p>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8CH5FPR88QYML" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Donate', 'antispam-bee' ); ?></a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Donate', 'antispam-bee' ); ?></a>
</p>
<p>
<a href="<?php esc_html_e( 'https://wordpress.org/plugins/antispam-bee/faq/', 'antispam-bee' ); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'FAQ', 'antispam-bee' ); ?></a>
Expand Down
29 changes: 19 additions & 10 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Antispam Bee #
* Contributors: pluginkollektiv
* Tags: anti-spam, antispam, block spam, comment, comments, comment spam, pingback, prevention, protect, protection, spam, spam filter, trackback
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8CH5FPR88QYML
* Tags: anti-spam, antispam, block spam, comment, comments, comment spam, pingback, spam, spam filter, trackback, GDPR
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW
* Requires at least: 3.8
* Tested up to: 4.9
* Stable tag: 2.7.1
* Stable tag: 2.8-beta1
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html

Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection against trackback spam and privacy hints.
Antispam plugin with a sophisticated tool set for effective day to day comment and trackback spam-fighting. Build with data protection and privacy in mind.

## Description ##
Say Goodbye to comment spam on your WordPress blog or website. *Antispam Bee* blocks spam comments and trackbacks effectively and without captchas. It is free of charge, ad-free and compliant with European data privacy standards.
Say Goodbye to comment spam on your WordPress blog or website. *Antispam Bee* blocks spam comments and trackbacks effectively, without captchas and without sending personal information to third party services. It is free of charge, ad-free and 100% GDPR compliant.

### Feature/Settings Overview ###
* Trust approved commenters.
Expand Down Expand Up @@ -43,7 +43,7 @@ Say Goodbye to comment spam on your WordPress blog or website. *Antispam Bee* bl

### Credits ###
* Author: [Sergej Müller](https://sergejmueller.github.io/)
* Maintainers: [pluginkollektiv](http://pluginkollektiv.org)
* Maintainers: [pluginkollektiv](https://pluginkollektiv.org)

## Installation ##
* If you don’t know how to install a plugin for WordPress, [here’s how](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins).
Expand All @@ -64,8 +64,8 @@ On sites operating from within the EU the option *Use a public antispam database
Antispam Bee works best with default WordPress comments. It is not compatible with Jetpack or Disqus Comments as those plugins load the comment form within an iframe. Thus Antispam Bee can not access the comment form directly.
It also won’t work with any AJAX-powered comment forms.

### Does Antispam Bee store any private user data, IP addresses or the like? ###
Nope. Antispam Bee is developed in Germany and Switzerland. You might have heard we can be a bit nitpicky over here when it comes to privacy.
### Does Antispam Bee store any private user data, and is it copmliant with GDPR? ###
Antispam Bee is developed in Europe. You might have heard we can be a bit nitpicky over here when it comes to privacy. The plugin does not save private user data and is 100% compliant with GDPR.

### Will I have to edit any theme templates to get Antispam Bee to work? ###
No, the plugin works as is. You may want to configure your favorite settings, though.
Expand All @@ -89,6 +89,15 @@ A complete documentation is available in the [GitHub repository Wiki](https://gi

## Changelog ##

### 2.8.0 ###
* Removed stopforumspam.com to avoid potential GDPR violation
* Improves IP handling to comply with GDPR
* Improves PHP7.2 compatibility
* Fixes small bug on mobile views
* Minor interface improvements
* Remove old russian and Dutch translation files
* For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/4?closed=1

### 2.7.1 ###
* Fixes an incompatibility with Chrome autofill
* Fixes some incompatibilities with other plugins/themes where the comment field was left empty
Expand Down Expand Up @@ -161,8 +170,8 @@ For the complete changelog, check out our [GitHub repository](https://github.com

== Upgrade Notice ==

= 2.7.1 =
This update changes the actual markup of your comment fields. Please make sure that you flush your caches after the plugin was updated!
= 2.8.0 =
This update makes sure your spam check is GDPR compliant, no matter the options you choose. Please make sure to update before May 25th!

## Screenshots ##
1. Antispam Bee settings

0 comments on commit 53ba8ef

Please sign in to comment.