Changeset 3196276
- Timestamp:
- 11/25/2024 09:51:21 AM (15 months ago)
- Location:
- adcaptcha
- Files:
-
- 2 added
- 12 edited
- 1 copied
-
tags/1.5.0 (copied) (copied from adcaptcha/trunk)
-
tags/1.5.0/README.md (modified) (1 diff)
-
tags/1.5.0/adcaptcha.php (modified) (3 diffs)
-
tags/1.5.0/readme.txt (modified) (3 diffs)
-
tags/1.5.0/src/Instantiate.php (modified) (2 diffs)
-
tags/1.5.0/src/Plugin/Woocommerce/Checkout.php (added)
-
tags/1.5.0/src/Settings/Plugins.php (modified) (1 diff)
-
tags/1.5.0/src/Settings/Settings.php (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/adcaptcha.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/Instantiate.php (modified) (2 diffs)
-
trunk/src/Plugin/Woocommerce/Checkout.php (added)
-
trunk/src/Settings/Plugins.php (modified) (1 diff)
-
trunk/src/Settings/Settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
adcaptcha/tags/1.5.0/README.md
r3177954 r3196276 27 27 * Forgot Password 28 28 * Register 29 * Checkout 29 30 30 31 ### ContactForm7 -
adcaptcha/tags/1.5.0/adcaptcha.php
r3183769 r3196276 3 3 * Plugin Name: adCAPTCHA for WordPress 4 4 * Description: Secure your site. Elevate your brand. Boost Ad Revenue. 5 * Version: 1. 4.25 * Version: 1.5.0 6 6 * Requires at least: 6.4.2 7 7 * Requires PHP: 7.4 … … 33 33 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/PasswordReset.php'; 34 34 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/Registration.php'; 35 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/Checkout.php'; 35 36 require_once plugin_dir_path(__FILE__) . 'src/Plugin/ContactForm7/Forms.php'; 36 37 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Mailchimp/Forms.php'; … … 42 43 use AdCaptcha\Instantiate; 43 44 44 const PLUGIN_VERSION_ADCAPTCHA = '1. 4.2';45 const PLUGIN_VERSION_ADCAPTCHA = '1.5.0'; 45 46 define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' )); 46 47 -
adcaptcha/tags/1.5.0/readme.txt
r3183769 r3196276 5 5 Requires at least: 6.0 6 6 Tested up to: 6.5.2 7 Stable tag: 1. 4.27 Stable tag: 1.5.0 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 33 33 * Forgot Password 34 34 * Register 35 * Checkout 35 36 36 37 **ContactForm7** … … 128 129 = 1.4.2 = 129 130 - Minor bug fix 131 132 = 1.5.0 = 133 - Feature: Support Woocommerce checkout (Shortcodes) -
adcaptcha/tags/1.5.0/src/Instantiate.php
r3177842 r3196276 11 11 use AdCaptcha\Plugin\Woocommerce\PasswordReset\PasswordReset as WoocommercePasswordReset; 12 12 use AdCaptcha\Plugin\Woocommerce\Registration\Registration as WoocommerceRegistration; 13 use AdCaptcha\Plugin\Woocommerce\Checkout\Checkout as WoocommerceCheckout; 13 14 use AdCaptcha\Plugin\ContactFrom7\Froms\Forms as ContactForm7; 14 15 use AdCaptcha\Plugin\Mailchimp\Froms\Forms as MailchimpForms; … … 53 54 'Woocommerce_Register' => [ 54 55 'instance' => WoocommerceRegistration::class, 56 'plugin' => [ 'woocommerce/woocommerce.php' ], 57 ], 58 'Woocommerce_Checkout' => [ 59 'instance' => WoocommerceCheckout::class, 55 60 'plugin' => [ 'woocommerce/woocommerce.php' ], 56 61 ], -
adcaptcha/tags/1.5.0/src/Settings/Plugins.php
r3177842 r3196276 15 15 'label' => 'Woocommerce', 16 16 'logo' => 'woocommerce_logo.png', 17 'options' => array('Login', 'Register', 'Forgot Password' )17 'options' => array('Login', 'Register', 'Forgot Password', 'Checkout') 18 18 ), 19 19 array( -
adcaptcha/tags/1.5.0/src/Settings/Settings.php
r3183769 r3196276 71 71 72 72 public function change_admin_footer_version() { 73 return 'Version 1. 4.2';73 return 'Version 1.5.0'; 74 74 } 75 75 } -
adcaptcha/trunk/README.md
r3177954 r3196276 27 27 * Forgot Password 28 28 * Register 29 * Checkout 29 30 30 31 ### ContactForm7 -
adcaptcha/trunk/adcaptcha.php
r3183769 r3196276 3 3 * Plugin Name: adCAPTCHA for WordPress 4 4 * Description: Secure your site. Elevate your brand. Boost Ad Revenue. 5 * Version: 1. 4.25 * Version: 1.5.0 6 6 * Requires at least: 6.4.2 7 7 * Requires PHP: 7.4 … … 33 33 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/PasswordReset.php'; 34 34 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/Registration.php'; 35 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Woocommerce/Checkout.php'; 35 36 require_once plugin_dir_path(__FILE__) . 'src/Plugin/ContactForm7/Forms.php'; 36 37 require_once plugin_dir_path(__FILE__) . 'src/Plugin/Mailchimp/Forms.php'; … … 42 43 use AdCaptcha\Instantiate; 43 44 44 const PLUGIN_VERSION_ADCAPTCHA = '1. 4.2';45 const PLUGIN_VERSION_ADCAPTCHA = '1.5.0'; 45 46 define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' )); 46 47 -
adcaptcha/trunk/readme.txt
r3183769 r3196276 5 5 Requires at least: 6.0 6 6 Tested up to: 6.5.2 7 Stable tag: 1. 4.27 Stable tag: 1.5.0 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 33 33 * Forgot Password 34 34 * Register 35 * Checkout 35 36 36 37 **ContactForm7** … … 128 129 = 1.4.2 = 129 130 - Minor bug fix 131 132 = 1.5.0 = 133 - Feature: Support Woocommerce checkout (Shortcodes) -
adcaptcha/trunk/src/Instantiate.php
r3177842 r3196276 11 11 use AdCaptcha\Plugin\Woocommerce\PasswordReset\PasswordReset as WoocommercePasswordReset; 12 12 use AdCaptcha\Plugin\Woocommerce\Registration\Registration as WoocommerceRegistration; 13 use AdCaptcha\Plugin\Woocommerce\Checkout\Checkout as WoocommerceCheckout; 13 14 use AdCaptcha\Plugin\ContactFrom7\Froms\Forms as ContactForm7; 14 15 use AdCaptcha\Plugin\Mailchimp\Froms\Forms as MailchimpForms; … … 53 54 'Woocommerce_Register' => [ 54 55 'instance' => WoocommerceRegistration::class, 56 'plugin' => [ 'woocommerce/woocommerce.php' ], 57 ], 58 'Woocommerce_Checkout' => [ 59 'instance' => WoocommerceCheckout::class, 55 60 'plugin' => [ 'woocommerce/woocommerce.php' ], 56 61 ], -
adcaptcha/trunk/src/Settings/Plugins.php
r3177842 r3196276 15 15 'label' => 'Woocommerce', 16 16 'logo' => 'woocommerce_logo.png', 17 'options' => array('Login', 'Register', 'Forgot Password' )17 'options' => array('Login', 'Register', 'Forgot Password', 'Checkout') 18 18 ), 19 19 array( -
adcaptcha/trunk/src/Settings/Settings.php
r3183769 r3196276 71 71 72 72 public function change_admin_footer_version() { 73 return 'Version 1. 4.2';73 return 'Version 1.5.0'; 74 74 } 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.