mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
Merge branch 'trunk' into PCP-176-currency-japananese-yen-jpy-is-n
This commit is contained in:
commit
4adccbdba3
7 changed files with 39 additions and 6 deletions
|
@ -12,6 +12,7 @@ branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- trunk
|
- trunk
|
||||||
|
- compat/ppxo
|
||||||
|
|
||||||
script: |
|
script: |
|
||||||
CHANGED_FILES=`git diff --name-only --diff-filter=ACMR $TRAVIS_COMMIT_RANGE | grep \\\\.php | awk '{print}' ORS=' '`
|
CHANGED_FILES=`git diff --name-only --diff-filter=ACMR $TRAVIS_COMMIT_RANGE | grep \\\\.php | awk '{print}' ORS=' '`
|
||||||
|
|
|
@ -1,5 +1,21 @@
|
||||||
*** Changelog ***
|
*** Changelog ***
|
||||||
|
|
||||||
|
= 1.4.0 - 2021-07-27 =
|
||||||
|
* Add - Venmo update #169
|
||||||
|
* Add - Pay Later Button –Global Expansion #182
|
||||||
|
* Add - Add Canada to advanced credit and debit card #180
|
||||||
|
* Add - Add button height setting for mini cart #181
|
||||||
|
* Add - Add BN Code to Pay Later Messaging #183
|
||||||
|
* Add - Add 30 seconds timeout by default to all API requests #184
|
||||||
|
* Fix - ACDC checkout error: "Card Details not valid"; but payment completes #193
|
||||||
|
* Fix - Incorrect API credentials cause fatal error #187
|
||||||
|
* Fix - PayPal payment fails if a new user account is created during the checkout process #177
|
||||||
|
* Fix - Disabled PayPal button appears when another button is loaded on the same page #192
|
||||||
|
* Fix - [UNPROCESSABLE_ENTITY] error during checkout #172
|
||||||
|
* Fix - Do not send customer email when order status is on hold #173
|
||||||
|
* Fix - Remove merchant-id query parameter in JSSDK #179
|
||||||
|
* Fix - Error on Plugin activation with Zettle POS Integration for WooCommerce #195
|
||||||
|
|
||||||
= 1.3.2 - 2021-06-08 =
|
= 1.3.2 - 2021-06-08 =
|
||||||
* Fix - Improve Subscription plugin support. #161
|
* Fix - Improve Subscription plugin support. #161
|
||||||
* Fix - Disable vault setting if vaulting feature is not available. #150
|
* Fix - Disable vault setting if vaulting feature is not available. #150
|
||||||
|
|
|
@ -202,7 +202,7 @@ class SmartButton implements SmartButtonInterface {
|
||||||
add_filter(
|
add_filter(
|
||||||
'woocommerce_credit_card_form_fields',
|
'woocommerce_credit_card_form_fields',
|
||||||
function ( $default_fields, $id ) {
|
function ( $default_fields, $id ) {
|
||||||
if ( $this->settings->has( 'vault_enabled' ) && $this->settings->get( 'vault_enabled' ) && CreditCardGateway::ID === $id ) {
|
if ( is_user_logged_in() && $this->settings->has( 'vault_enabled' ) && $this->settings->get( 'vault_enabled' ) && CreditCardGateway::ID === $id ) {
|
||||||
$default_fields['card-vault'] = sprintf(
|
$default_fields['card-vault'] = sprintf(
|
||||||
'<p class="form-row form-row-wide"><label for="vault"><input class="ppcp-credit-card-vault" type="checkbox" id="ppcp-credit-card-vault" name="vault">%s</label></p>',
|
'<p class="form-row form-row-wide"><label for="vault"><input class="ppcp-credit-card-vault" type="checkbox" id="ppcp-credit-card-vault" name="vault">%s</label></p>',
|
||||||
esc_html__( 'Save your Credit Card', 'woocommerce-paypal-payments' )
|
esc_html__( 'Save your Credit Card', 'woocommerce-paypal-payments' )
|
||||||
|
|
|
@ -174,7 +174,7 @@ class CreateOrderEndpoint implements EndpointInterface {
|
||||||
$this->set_bn_code( $data );
|
$this->set_bn_code( $data );
|
||||||
|
|
||||||
if ( 'checkout' === $data['context'] ) {
|
if ( 'checkout' === $data['context'] ) {
|
||||||
if ( '1' === $data['createaccount'] ) {
|
if ( isset( $data['createaccount'] ) && '1' === $data['createaccount'] ) {
|
||||||
$this->process_checkout_form_when_creating_account( $data['form'], $wc_order );
|
$this->process_checkout_form_when_creating_account( $data['form'], $wc_order );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "woocommerce-paypal-payments",
|
"name": "woocommerce-paypal-payments",
|
||||||
"version": "1.3.2",
|
"version": "1.4.0",
|
||||||
"description": "WooCommerce PayPal Payments",
|
"description": "WooCommerce PayPal Payments",
|
||||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||||
"license": "GPL-2.0",
|
"license": "GPL-2.0",
|
||||||
|
|
18
readme.txt
18
readme.txt
|
@ -4,7 +4,7 @@ Tags: woocommerce, paypal, payments, ecommerce, e-commerce, store, sales, sell,
|
||||||
Requires at least: 5.3
|
Requires at least: 5.3
|
||||||
Tested up to: 5.7
|
Tested up to: 5.7
|
||||||
Requires PHP: 7.1
|
Requires PHP: 7.1
|
||||||
Stable tag: 1.3.2
|
Stable tag: 1.4.0
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
|
@ -58,6 +58,22 @@ Follow the steps below to connect the plugin to your PayPal account:
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.4.0 =
|
||||||
|
* Add - Venmo update #169
|
||||||
|
* Add - Pay Later Button –Global Expansion #182
|
||||||
|
* Add - Add Canada to advanced credit and debit card #180
|
||||||
|
* Add - Add button height setting for mini cart #181
|
||||||
|
* Add - Add BN Code to Pay Later Messaging #183
|
||||||
|
* Add - Add 30 seconds timeout by default to all API requests #184
|
||||||
|
* Fix - ACDC checkout error: "Card Details not valid"; but payment completes #193
|
||||||
|
* Fix - Incorrect API credentials cause fatal error #187
|
||||||
|
* Fix - PayPal payment fails if a new user account is created during the checkout process #177
|
||||||
|
* Fix - Disabled PayPal button appears when another button is loaded on the same page #192
|
||||||
|
* Fix - [UNPROCESSABLE_ENTITY] error during checkout #172
|
||||||
|
* Fix - Do not send customer email when order status is on hold #173
|
||||||
|
* Fix - Remove merchant-id query parameter in JSSDK #179
|
||||||
|
* Fix - Error on Plugin activation with Zettle POS Integration for WooCommerce #195
|
||||||
|
|
||||||
= 1.3.2 =
|
= 1.3.2 =
|
||||||
* Fix - Improve Subscription plugin support. #161
|
* Fix - Improve Subscription plugin support. #161
|
||||||
* Fix - Disable vault setting if vaulting feature is not available. #150
|
* Fix - Disable vault setting if vaulting feature is not available. #150
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
* Plugin Name: WooCommerce PayPal Payments
|
* Plugin Name: WooCommerce PayPal Payments
|
||||||
* Plugin URI: https://woocommerce.com/products/woocommerce-paypal-payments/
|
* Plugin URI: https://woocommerce.com/products/woocommerce-paypal-payments/
|
||||||
* Description: PayPal's latest complete payments processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets local payment types and bank accounts. Turn on only PayPal options or process a full suite of payment methods. Enable global transaction with extensive currency and country coverage.
|
* Description: PayPal's latest complete payments processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets local payment types and bank accounts. Turn on only PayPal options or process a full suite of payment methods. Enable global transaction with extensive currency and country coverage.
|
||||||
* Version: 1.3.2
|
* Version: 1.4.0
|
||||||
* Author: WooCommerce
|
* Author: WooCommerce
|
||||||
* Author URI: https://woocommerce.com/
|
* Author URI: https://woocommerce.com/
|
||||||
* License: GPL-2.0
|
* License: GPL-2.0
|
||||||
* Requires PHP: 7.1
|
* Requires PHP: 7.1
|
||||||
* WC requires at least: 3.9
|
* WC requires at least: 3.9
|
||||||
* WC tested up to: 4.9
|
* WC tested up to: 5.5
|
||||||
* Text Domain: woocommerce-paypal-payments
|
* Text Domain: woocommerce-paypal-payments
|
||||||
*
|
*
|
||||||
* @package WooCommerce\PayPalCommerce
|
* @package WooCommerce\PayPalCommerce
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue