Skip to content

Commit

Permalink
Merge pull request #32 from wpdev10/master
Browse files Browse the repository at this point in the history
ReCaptcha add on runs before UsersWP on some sites causing issue fixed.
  • Loading branch information
wpdev10 authored Feb 24, 2020
2 parents 6e99ee2 + 0272967 commit 7f19aff
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Binary file modified languages/uwp-recaptcha-en_US.mo
Binary file not shown.
6 changes: 3 additions & 3 deletions languages/uwp-recaptcha-en_US.po
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
msgid ""
msgstr ""
"Project-Id-Version: UsersWP - ReCaptcha 1.2.1\n"
"Project-Id-Version: UsersWP - ReCaptcha 1.3.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-01-23 19:46+0530\n"
"PO-Revision-Date: 2020-01-23 19:46+0530\n"
"POT-Creation-Date: 2020-02-24 19:14+0530\n"
"PO-Revision-Date: 2020-02-24 19:15+0530\n"
"Last-Translator: \n"
"Language-Team: AyeCode <[email protected]>\n"
"Language: en_US\n"
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://userswp.io/
Tags: recaptcha, frontend, login, register, account, users, restrict, userswp
Requires at least: 4.9
Tested up to: 5.3
Stable tag: 1.2.1
Stable tag: 1.3.3
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -52,8 +52,12 @@ TBA

== Changelog ==

= 1.2.1 =
= 1.3.3 =
* ReCaptcha add on runs before UsersWP on some sites causing issue - FIXED

= 1.3.2 =
* Settings reset to default all the time we activate plugin - FIXED
* First wp.org release - YAY

= 1.2.0 =
* Compatibility with new UWP core style updates - ADDED
Expand Down
6 changes: 3 additions & 3 deletions uwp_recaptcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: UsersWP - ReCaptcha
Plugin URI: https://userswp.io
Description: ReCaptcha add-on for UsersWP.
Version: 1.2.1
Version: 1.3.3
Author: AyeCode Ltd
Author URI: https://userswp.io
License: GPL-2.0+
Expand All @@ -16,7 +16,7 @@
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;

define( 'UWP_RECAPTCHA_VERSION', '1.2.1' );
define( 'UWP_RECAPTCHA_VERSION', '1.3.3' );

define( 'UWP_RECAPTCHA_PATH', plugin_dir_path( __FILE__ ) );

Expand All @@ -29,7 +29,7 @@
}

// Check UsersWP class exists or not.
if ( !class_exists( 'UsersWP' ) ) {
if ( !is_plugin_active( 'userswp/userswp.php' ) ) {

deactivate_plugins( plugin_basename( __FILE__ ) );
function uwp_recaptcha_requires_userswp_plugin() {
Expand Down

0 comments on commit 7f19aff

Please sign in to comment.