Changeset 3072471
- Timestamp:
- 04/17/2024 02:26:22 PM (2 years ago)
- Location:
- multisafepay
- Files:
-
- 8 edited
- 1 copied
-
tags/6.4.1 (copied) (copied from multisafepay/trunk)
-
tags/6.4.1/multisafepay.php (modified) (2 diffs)
-
tags/6.4.1/readme.txt (modified) (3 diffs)
-
tags/6.4.1/src/PaymentMethods/Base/BasePaymentMethod.php (modified) (1 diff)
-
tags/6.4.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/multisafepay.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/PaymentMethods/Base/BasePaymentMethod.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisafepay/tags/6.4.1/multisafepay.php
r3072171 r3072471 5 5 * Plugin URI: https://docs.multisafepay.com/docs/woocommerce 6 6 * Description: MultiSafepay Payment Plugin 7 * Version: 6.4. 07 * Version: 6.4.1 8 8 * Author: MultiSafepay 9 9 * Author URI: https://www.multisafepay.com … … 27 27 * Plugin version 28 28 */ 29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4. 0' );29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.1' ); 30 30 31 31 /** -
multisafepay/tags/6.4.1/readme.txt
r3072171 r3072471 5 5 Tested up to: 6.5.2 6 6 Requires PHP: 7.3 7 Stable tag: 6.4. 07 Stable tag: 6.4.1 8 8 License: MIT 9 9 … … 128 128 == Upgrade Notice == 129 129 130 = 6.4. 0=130 = 6.4.1 = 131 131 6.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences. 132 132 … … 144 144 145 145 == Changelog == 146 = Release Notes - WooCommerce 6.4.1 (Apr 17th, 2024) = 147 148 ### Fixed 149 + PLGWOOS-920: Fix Apple Pay and Google Pay being shown in WooCommerce blocks, when are using direct payment buttons 150 146 151 = Release Notes - WooCommerce 6.4.0 (Apr 17th, 2024) = 147 152 -
multisafepay/tags/6.4.1/src/PaymentMethods/Base/BasePaymentMethod.php
r3072171 r3072471 169 169 */ 170 170 public function get_payment_method_type(): string { 171 if ( $this->is_payment_component_enabled() || (bool) $this->get_option( 'direct_transaction', '0' ) ) { 171 if ( $this->is_payment_component_enabled() || 172 (bool) $this->get_option( 'direct_transaction', '0' ) || 173 (bool) $this->get_option( 'use_direct_button', '0' ) 174 ) { 172 175 return self::TRANSACTION_TYPE_DIRECT; 173 176 } -
multisafepay/tags/6.4.1/vendor/composer/installed.php
r3072171 r3072471 2 2 'root' => array( 3 3 'name' => 'multisafepay/woocommerce', 4 'pretty_version' => '6.4. 0',5 'version' => '6.4. 0.0',6 'reference' => ' ecc911c2a5d20e186b653cbc98161133bba10bf0',4 'pretty_version' => '6.4.1', 5 'version' => '6.4.1.0', 6 'reference' => '4995acd31e5b4e25d7e780abe83b061a18a76303', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'multisafepay/woocommerce' => array( 23 'pretty_version' => '6.4. 0',24 'version' => '6.4. 0.0',25 'reference' => ' ecc911c2a5d20e186b653cbc98161133bba10bf0',23 'pretty_version' => '6.4.1', 24 'version' => '6.4.1.0', 25 'reference' => '4995acd31e5b4e25d7e780abe83b061a18a76303', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../', -
multisafepay/trunk/multisafepay.php
r3072171 r3072471 5 5 * Plugin URI: https://docs.multisafepay.com/docs/woocommerce 6 6 * Description: MultiSafepay Payment Plugin 7 * Version: 6.4. 07 * Version: 6.4.1 8 8 * Author: MultiSafepay 9 9 * Author URI: https://www.multisafepay.com … … 27 27 * Plugin version 28 28 */ 29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4. 0' );29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.1' ); 30 30 31 31 /** -
multisafepay/trunk/readme.txt
r3072171 r3072471 5 5 Tested up to: 6.5.2 6 6 Requires PHP: 7.3 7 Stable tag: 6.4. 07 Stable tag: 6.4.1 8 8 License: MIT 9 9 … … 128 128 == Upgrade Notice == 129 129 130 = 6.4. 0=130 = 6.4.1 = 131 131 6.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences. 132 132 … … 144 144 145 145 == Changelog == 146 = Release Notes - WooCommerce 6.4.1 (Apr 17th, 2024) = 147 148 ### Fixed 149 + PLGWOOS-920: Fix Apple Pay and Google Pay being shown in WooCommerce blocks, when are using direct payment buttons 150 146 151 = Release Notes - WooCommerce 6.4.0 (Apr 17th, 2024) = 147 152 -
multisafepay/trunk/src/PaymentMethods/Base/BasePaymentMethod.php
r3072171 r3072471 169 169 */ 170 170 public function get_payment_method_type(): string { 171 if ( $this->is_payment_component_enabled() || (bool) $this->get_option( 'direct_transaction', '0' ) ) { 171 if ( $this->is_payment_component_enabled() || 172 (bool) $this->get_option( 'direct_transaction', '0' ) || 173 (bool) $this->get_option( 'use_direct_button', '0' ) 174 ) { 172 175 return self::TRANSACTION_TYPE_DIRECT; 173 176 } -
multisafepay/trunk/vendor/composer/installed.php
r3072171 r3072471 2 2 'root' => array( 3 3 'name' => 'multisafepay/woocommerce', 4 'pretty_version' => '6.4. 0',5 'version' => '6.4. 0.0',6 'reference' => ' ecc911c2a5d20e186b653cbc98161133bba10bf0',4 'pretty_version' => '6.4.1', 5 'version' => '6.4.1.0', 6 'reference' => '4995acd31e5b4e25d7e780abe83b061a18a76303', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'multisafepay/woocommerce' => array( 23 'pretty_version' => '6.4. 0',24 'version' => '6.4. 0.0',25 'reference' => ' ecc911c2a5d20e186b653cbc98161133bba10bf0',23 'pretty_version' => '6.4.1', 24 'version' => '6.4.1.0', 25 'reference' => '4995acd31e5b4e25d7e780abe83b061a18a76303', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.