Plugin Directory

Changeset 3072471


Ignore:
Timestamp:
04/17/2024 02:26:22 PM (2 years ago)
Author:
multisafepayplugin
Message:

Update to version 6.4.1 from GitHub

Location:
multisafepay
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • multisafepay/tags/6.4.1/multisafepay.php

    r3072171 r3072471  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.4.0
     7 * Version:                 6.4.1
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.0' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.1' );
    3030
    3131/**
  • multisafepay/tags/6.4.1/readme.txt

    r3072171 r3072471  
    55Tested up to: 6.5.2
    66Requires PHP: 7.3
    7 Stable tag: 6.4.0
     7Stable tag: 6.4.1
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.4.0 =
     130= 6.4.1 =
    1311316.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.
    132132
     
    144144
    145145== 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
    146151= Release Notes - WooCommerce 6.4.0 (Apr 17th, 2024) =
    147152
  • multisafepay/tags/6.4.1/src/PaymentMethods/Base/BasePaymentMethod.php

    r3072171 r3072471  
    169169     */
    170170    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        ) {
    172175            return self::TRANSACTION_TYPE_DIRECT;
    173176        }
  • multisafepay/tags/6.4.1/vendor/composer/installed.php

    r3072171 r3072471  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        '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',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • multisafepay/trunk/multisafepay.php

    r3072171 r3072471  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.4.0
     7 * Version:                 6.4.1
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.0' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.4.1' );
    3030
    3131/**
  • multisafepay/trunk/readme.txt

    r3072171 r3072471  
    55Tested up to: 6.5.2
    66Requires PHP: 7.3
    7 Stable tag: 6.4.0
     7Stable tag: 6.4.1
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.4.0 =
     130= 6.4.1 =
    1311316.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.
    132132
     
    144144
    145145== 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
    146151= Release Notes - WooCommerce 6.4.0 (Apr 17th, 2024) =
    147152
  • multisafepay/trunk/src/PaymentMethods/Base/BasePaymentMethod.php

    r3072171 r3072471  
    169169     */
    170170    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        ) {
    172175            return self::TRANSACTION_TYPE_DIRECT;
    173176        }
  • multisafepay/trunk/vendor/composer/installed.php

    r3072171 r3072471  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        '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',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.