Changeset 3240589
- Timestamp:
- 02/14/2025 11:50:43 AM (14 months ago)
- Location:
- multisafepay
- Files:
-
- 14 edited
- 1 copied
-
tags/6.7.2 (copied) (copied from multisafepay/trunk)
-
tags/6.7.2/multisafepay.php (modified) (3 diffs)
-
tags/6.7.2/readme.txt (modified) (3 diffs)
-
tags/6.7.2/src/PaymentMethods/Base/BasePaymentMethod.php (modified) (2 diffs)
-
tags/6.7.2/vendor/autoload.php (modified) (1 diff)
-
tags/6.7.2/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/6.7.2/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/6.7.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/multisafepay.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/PaymentMethods/Base/BasePaymentMethod.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisafepay/tags/6.7.2/multisafepay.php
r3236519 r3240589 5 5 * Plugin URI: https://docs.multisafepay.com/docs/woocommerce 6 6 * Description: MultiSafepay Payment Plugin 7 * Version: 6.7. 17 * Version: 6.7.2 8 8 * Author: MultiSafepay 9 9 * Author URI: https://www.multisafepay.com … … 12 12 * License URI: http://www.gnu.org/licenses/gpl-3.0.html 13 13 * Requires at least: 6.0 14 * Tested up to: 6.7. 114 * Tested up to: 6.7.2 15 15 * WC requires at least: 6.0.0 16 * WC tested up to: 9.6. 116 * WC tested up to: 9.6.2 17 17 * Requires PHP: 7.3 18 18 * Text Domain: multisafepay … … 27 27 * Plugin version 28 28 */ 29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7. 1' );29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.2' ); 30 30 31 31 /** -
multisafepay/tags/6.7.2/readme.txt
r3236519 r3240589 3 3 Tags: multisafepay, payment gateway, credit cards, ideal, bnpl 4 4 Requires at least: 6.0 5 Tested up to: 6.7. 15 Tested up to: 6.7.2 6 6 Requires PHP: 7.3 7 Stable tag: 6.7. 17 Stable tag: 6.7.2 8 8 License: MIT 9 9 … … 128 128 == Upgrade Notice == 129 129 130 = 6.7. 1=130 = 6.7.2 = 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.7.2 (Feb 14th, 2025) = 147 148 ### Fixed 149 + PLGWOOS-971: Fix iDEAL payment method not being shown on WooCommerce Checkout Blocks 150 146 151 = Release Notes - WooCommerce 6.7.1 (Feb 7th, 2025) = 147 152 -
multisafepay/tags/6.7.2/src/PaymentMethods/Base/BasePaymentMethod.php
r3236519 r3240589 259 259 */ 260 260 public function get_payment_method_type(): string { 261 // Converting to direct the transaction type for iDEAL262 if ( $this->is_ideal_2_0() ) {263 return self::TRANSACTION_TYPE_DIRECT;264 }265 266 261 // Avoiding the warning when the admin is editing 267 262 // the checkout page to add the block-based checkout. … … 280 275 // Otherwise, the transaction type is always redirect. 281 276 return self::TRANSACTION_TYPE_REDIRECT; 277 } 278 279 // Converting to direct the transaction type for iDEAL 280 if ( $this->is_ideal_2_0() ) { 281 return self::TRANSACTION_TYPE_DIRECT; 282 282 } 283 283 -
multisafepay/tags/6.7.2/vendor/autoload.php
r3236519 r3240589 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb::getLoader();25 return ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4::getLoader(); -
multisafepay/tags/6.7.2/vendor/composer/autoload_real.php
r3236519 r3240589 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb5 class ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
multisafepay/tags/6.7.2/vendor/composer/autoload_static.php
r3236519 r3240589 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb7 class ComposerStaticInit11f1daa923d534ef4a1e0351581144f4 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 63 63 { 64 64 return \Closure::bind(function () use ($loader) { 65 $loader->prefixLengthsPsr4 = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$prefixLengthsPsr4;66 $loader->prefixDirsPsr4 = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$prefixDirsPsr4;67 $loader->classMap = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$classMap;65 $loader->prefixLengthsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixLengthsPsr4; 66 $loader->prefixDirsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixDirsPsr4; 67 $loader->classMap = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$classMap; 68 68 69 69 }, null, ClassLoader::class); -
multisafepay/tags/6.7.2/vendor/composer/installed.php
r3236519 r3240589 2 2 'root' => array( 3 3 'name' => 'multisafepay/woocommerce', 4 'pretty_version' => '6.7. 1',5 'version' => '6.7. 1.0',4 'pretty_version' => '6.7.2', 5 'version' => '6.7.2.0', 6 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', … … 21 21 ), 22 22 'multisafepay/woocommerce' => array( 23 'pretty_version' => '6.7. 1',24 'version' => '6.7. 1.0',23 'pretty_version' => '6.7.2', 24 'version' => '6.7.2.0', 25 25 'reference' => null, 26 26 'type' => 'wordpress-plugin', -
multisafepay/trunk/multisafepay.php
r3236519 r3240589 5 5 * Plugin URI: https://docs.multisafepay.com/docs/woocommerce 6 6 * Description: MultiSafepay Payment Plugin 7 * Version: 6.7. 17 * Version: 6.7.2 8 8 * Author: MultiSafepay 9 9 * Author URI: https://www.multisafepay.com … … 12 12 * License URI: http://www.gnu.org/licenses/gpl-3.0.html 13 13 * Requires at least: 6.0 14 * Tested up to: 6.7. 114 * Tested up to: 6.7.2 15 15 * WC requires at least: 6.0.0 16 * WC tested up to: 9.6. 116 * WC tested up to: 9.6.2 17 17 * Requires PHP: 7.3 18 18 * Text Domain: multisafepay … … 27 27 * Plugin version 28 28 */ 29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7. 1' );29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.2' ); 30 30 31 31 /** -
multisafepay/trunk/readme.txt
r3236519 r3240589 3 3 Tags: multisafepay, payment gateway, credit cards, ideal, bnpl 4 4 Requires at least: 6.0 5 Tested up to: 6.7. 15 Tested up to: 6.7.2 6 6 Requires PHP: 7.3 7 Stable tag: 6.7. 17 Stable tag: 6.7.2 8 8 License: MIT 9 9 … … 128 128 == Upgrade Notice == 129 129 130 = 6.7. 1=130 = 6.7.2 = 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.7.2 (Feb 14th, 2025) = 147 148 ### Fixed 149 + PLGWOOS-971: Fix iDEAL payment method not being shown on WooCommerce Checkout Blocks 150 146 151 = Release Notes - WooCommerce 6.7.1 (Feb 7th, 2025) = 147 152 -
multisafepay/trunk/src/PaymentMethods/Base/BasePaymentMethod.php
r3236519 r3240589 259 259 */ 260 260 public function get_payment_method_type(): string { 261 // Converting to direct the transaction type for iDEAL262 if ( $this->is_ideal_2_0() ) {263 return self::TRANSACTION_TYPE_DIRECT;264 }265 266 261 // Avoiding the warning when the admin is editing 267 262 // the checkout page to add the block-based checkout. … … 280 275 // Otherwise, the transaction type is always redirect. 281 276 return self::TRANSACTION_TYPE_REDIRECT; 277 } 278 279 // Converting to direct the transaction type for iDEAL 280 if ( $this->is_ideal_2_0() ) { 281 return self::TRANSACTION_TYPE_DIRECT; 282 282 } 283 283 -
multisafepay/trunk/vendor/autoload.php
r3236519 r3240589 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb::getLoader();25 return ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4::getLoader(); -
multisafepay/trunk/vendor/composer/autoload_real.php
r3236519 r3240589 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb5 class ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 8cfc16883bb95c9a0769f88e4434f2cb', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
multisafepay/trunk/vendor/composer/autoload_static.php
r3236519 r3240589 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb7 class ComposerStaticInit11f1daa923d534ef4a1e0351581144f4 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 63 63 { 64 64 return \Closure::bind(function () use ($loader) { 65 $loader->prefixLengthsPsr4 = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$prefixLengthsPsr4;66 $loader->prefixDirsPsr4 = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$prefixDirsPsr4;67 $loader->classMap = ComposerStaticInit 8cfc16883bb95c9a0769f88e4434f2cb::$classMap;65 $loader->prefixLengthsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixLengthsPsr4; 66 $loader->prefixDirsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixDirsPsr4; 67 $loader->classMap = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$classMap; 68 68 69 69 }, null, ClassLoader::class); -
multisafepay/trunk/vendor/composer/installed.php
r3236519 r3240589 2 2 'root' => array( 3 3 'name' => 'multisafepay/woocommerce', 4 'pretty_version' => '6.7. 1',5 'version' => '6.7. 1.0',4 'pretty_version' => '6.7.2', 5 'version' => '6.7.2.0', 6 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', … … 21 21 ), 22 22 'multisafepay/woocommerce' => array( 23 'pretty_version' => '6.7. 1',24 'version' => '6.7. 1.0',23 'pretty_version' => '6.7.2', 24 'version' => '6.7.2.0', 25 25 'reference' => null, 26 26 'type' => 'wordpress-plugin',
Note: See TracChangeset
for help on using the changeset viewer.