Skip to content

Commit

Permalink
Updated details for v4.4.25
Browse files Browse the repository at this point in the history
  • Loading branch information
kcppdevelopers committed Mar 26, 2024
1 parent d8d49ff commit 160cfb7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions paypal-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: PayPal for WooCommerce
* Plugin URI: http://www.angelleye.com/product/paypal-for-woocommerce-plugin/
* Description: Easily add the PayPal Complete Payments Platform including PayPal Checkout, Pay Later, Venmo, Direct Credit Processing, and alternative payment methods like Apple Pay, Google Pay, and more! Also fully supports Braintree Payments.
* Version: 4.4.24
* Version: 4.4.25
* Author: Angell EYE
* Author URI: http://www.angelleye.com/
* License: GNU General Public License v3.0
Expand All @@ -15,7 +15,7 @@
* Requires at least: 5.8
* Tested up to: 6.4.3
* WC requires at least: 3.0.0
* WC tested up to: 8.6.1
* WC tested up to: 8.7.0
*
*************
* Attribution
Expand All @@ -40,7 +40,7 @@
define('PAYPAL_FOR_WOOCOMMERCE_ASSET_URL', plugin_dir_url(__FILE__));
}
if (!defined('VERSION_PFW')) {
define('VERSION_PFW', '4.4.24');
define('VERSION_PFW', '4.4.25');
}
if ( ! defined( 'PAYPAL_FOR_WOOCOMMERCE_PLUGIN_FILE' ) ) {
define( 'PAYPAL_FOR_WOOCOMMERCE_PLUGIN_FILE', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion ppcp-gateway/class-angelleye-paypal-ppcp-dcc-validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class AngellEYE_PayPal_PPCP_DCC_Validate {

protected static $_instance = null;
public $country;
public $apple_google_vault_supported_county = [
public $apple_google_vault_supported_country = [
'AU', 'AT', 'BE', 'BG', 'CA', 'CY', 'CZ', 'DK', 'EE', 'FI',
'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LI', 'LT', 'LU',
'MT', 'NL', 'NO', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private function default_data() {
));
$country = $this->dcc_applies->country();
if (!empty($country)) {
if (in_array($this->dcc_applies->country(), $this->dcc_applies->apple_google_vault_supported_county)) {
if (in_array($this->dcc_applies->country(), $this->dcc_applies->apple_google_vault_supported_country)) {
$default_data['capabilities'] = array(
'PAYPAL_WALLET_VAULTING_ADVANCED',
'GOOGLE_PAY',
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: woocommerce, paypal, express checkout, payments pro, angelleye, payflow, dodirectpayment, apple pay, google play, braintree, payments advanced, rest, credit cards, credit card payments, payments, payment
Requires at least: 5.8
Tested up to: 6.4.3
Stable tag: 4.4.24
Stable tag: 4.4.25
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -127,6 +127,11 @@ Automatic updates should work great for you. As always, though, we recommend ba

== Changelog ==

= 4.4.25 - 03.26.2024 =
* Feature - Default activation of Vault, Google, and Apple Pay for merchant onboarding. ([PFW-1787](https://github.com/angelleye/paypal-woocommerce/pull/2028))
* Tweak - Concealed Google Pay option for subscription products. ([PFW-1788](https://github.com/angelleye/paypal-woocommerce/pull/2029))
* Fix - Addressed PHP notice issue. ([PFW-1780](https://github.com/angelleye/paypal-woocommerce/pull/2030))

= 4.4.24 - 03.19.2024 =
* Tweak - Adjust migration order notes. ([PFW-1784](https://github.com/angelleye/paypal-woocommerce/pull/2025))

Expand Down

0 comments on commit 160cfb7

Please sign in to comment.