Edited changelog, updated version, added myself to authors list.

This commit is contained in:
Janek Bevendorff 2012-08-15 01:57:30 +02:00
parent 165a61b6ec
commit 72c1da5308
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,11 @@
Version 1.2
* Implemented a way to specify custom questions to use instead of just arithmetic problems
* Added two more methods for retrieving the correct Captcha answer
* Fixed bug occurring when Captcha answer is 0
* Improved title spam detection
* Various fixes and improvements
Version 1.01
* Added "hidden captcha", checking for bots not having JS.

View file

@ -101,13 +101,14 @@ class serendipity_event_spamblock_bee extends serendipity_event
$propbag->add('description', PLUGIN_EVENT_SPAMBLOCK_BEE_DESC);
$propbag->add('stackable', false);
$propbag->add('author', 'Grischa Brockhaus');
$propbag->add('author', 'Janek Bevendorff');
$propbag->add('requirements', array(
'serendipity' => '0.8',
'smarty' => '2.6.7',
'php' => '4.1.0'
));
$propbag->add('version', '1.01');
$propbag->add('version', '1.2');
$propbag->add('event_hooks', array(
'frontend_comment' => true,