Version Description
- The required WordPress version changed to 3.9 and higher.
- Tested on WordPress 4.1.
Download this release
Release Info
Developer | takayukister |
Plugin | Really Simple CAPTCHA |
Version | 1.8.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.8.0.1
- readme.txt +9 -20
- really-simple-captcha.php +3 -3
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: takayukister
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: captcha
|
5 |
-
Requires at least: 3.
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -91,23 +91,12 @@ If you have any further questions, please submit them [to the support forum](htt
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
-
= 1.8 =
|
95 |
-
|
96 |
-
* The required WordPress version changed to 3.7 and higher.
|
97 |
-
* Introduce normalize_path() to normalize file paths on different file systems.
|
98 |
-
|
99 |
-
= 1.7 =
|
100 |
|
101 |
-
* The required WordPress version changed to 3.
|
102 |
-
*
|
103 |
|
104 |
-
= 1.
|
105 |
-
|
106 |
-
* Bundled font changed to Gentium Basic 1.1.
|
107 |
-
* Some workarounds for infrequently reported problems on Windows server.
|
108 |
-
* Do temp file cleanup every time before generating CAPTCHA image.
|
109 |
-
|
110 |
-
= 1.5 =
|
111 |
|
112 |
-
* The required WordPress version changed to 3.
|
113 |
-
*
|
2 |
Contributors: takayukister
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: captcha
|
5 |
+
Requires at least: 3.9
|
6 |
+
Tested up to: 4.1
|
7 |
+
Stable tag: 1.8.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.8.0.1 =
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
+
* The required WordPress version changed to 3.9 and higher.
|
97 |
+
* Tested on WordPress 4.1.
|
98 |
|
99 |
+
= 1.8 =
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
+
* The required WordPress version changed to 3.7 and higher.
|
102 |
+
* Introduce normalize_path() to normalize file paths on different file systems.
|
really-simple-captcha.php
CHANGED
@@ -4,11 +4,11 @@ Plugin Name: Really Simple CAPTCHA
|
|
4 |
Plugin URI: http://contactform7.com/captcha/
|
5 |
Description: Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.
|
6 |
Author: Takayuki Miyoshi
|
7 |
-
Version: 1.8
|
8 |
Author URI: http://ideasilo.wordpress.com/
|
9 |
*/
|
10 |
|
11 |
-
/* Copyright 2007-
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
@@ -25,7 +25,7 @@ Author URI: http://ideasilo.wordpress.com/
|
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
-
define( 'REALLYSIMPLECAPTCHA_VERSION', '1.8' );
|
29 |
|
30 |
class ReallySimpleCaptcha {
|
31 |
|
4 |
Plugin URI: http://contactform7.com/captcha/
|
5 |
Description: Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.
|
6 |
Author: Takayuki Miyoshi
|
7 |
+
Version: 1.8.0.1
|
8 |
Author URI: http://ideasilo.wordpress.com/
|
9 |
*/
|
10 |
|
11 |
+
/* Copyright 2007-2015 Takayuki Miyoshi (email: takayukister at gmail.com)
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
+
define( 'REALLYSIMPLECAPTCHA_VERSION', '1.8.0.1' );
|
29 |
|
30 |
class ReallySimpleCaptcha {
|
31 |
|