Plugin Directory

Changeset 3303667


Ignore:
Timestamp:
05/30/2025 03:04:22 PM (10 months ago)
Author:
monei
Message:

Update to version 6.3.4 from GitHub

Location:
monei
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • monei/tags/6.3.4/changelog.txt

    r3293325 r3303667  
    11*** MONEI Payments for WooCommerce ***
     2
     3
     42025-05-30 - version 6.3.4
     5* Fix - Redirect flow not working in classic checkout
    26
    372025-05-14 - version 6.3.3
  • monei/tags/6.3.4/class-woocommerce-gateway-monei.php

    r3293325 r3303667  
    66 * @category Core
    77 * @package  Woocommerce_Gateway_Monei
    8  * @version  6.3.3
     8 * @version  6.3.4
    99 */
    1010
     
    2626         * @var string
    2727         */
    28         public $version = '6.3.3';
     28        public $version = '6.3.4';
    2929
    3030        /**
  • monei/tags/6.3.4/readme.txt

    r3293325 r3303667  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 6.3.3
     6Stable tag: 6.3.4
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    104104== Changelog ==
    105105
     1062025-05-30 - version 6.3.4
     107* Fix - Redirect flow not working in classic checkout
     108
    1061092025-05-14 - version 6.3.3
    107110* Fix - Error copying old keys that hides the gateway
  • monei/tags/6.3.4/src/Gateways/PaymentMethods/WCGatewayMoneiCC.php

    r3293325 r3303667  
    113113        $this->handler               = $this->subscriptions_service->getHandler();
    114114        if ( $this->handler ) {
    115             $this->supports = $this->handler->init_subscriptions($this->supports, $this->id);
     115            $this->supports = $this->handler->init_subscriptions( $this->supports, $this->id );
    116116        }
    117117
     
    342342    public function monei_scripts() {
    343343        // If merchant wants Component CC or is_add_payment_method_page that always use this component method.
    344         if ( $this->redirect_flow && ! is_checkout() && ! is_add_payment_method_page() && ($this->handler && ! $this->handler->is_subscription_change_payment_page() ) ) {
     344        if ( $this->redirect_flow || ( ! is_checkout() && ! is_add_payment_method_page() && ( $this->handler && ! $this->handler->is_subscription_change_payment_page() ) ) ) {
    345345            return;
    346346        }
  • monei/tags/6.3.4/vendor/composer/installed.php

    r3293325 r3303667  
    22    'root' => array(
    33        'name' => '__root__',
    4         'pretty_version' => '6.3.3',
    5         'version' => '6.3.3.0',
    6         'reference' => 'b1ae5ef63f8597ea0effaf4663481129917b4d87',
     4        'pretty_version' => '6.3.4',
     5        'version' => '6.3.4.0',
     6        'reference' => '636bbdab472ebc1ec51e76a11d6d219bfbd8ff85',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '6.3.3',
    15             'version' => '6.3.3.0',
    16             'reference' => 'b1ae5ef63f8597ea0effaf4663481129917b4d87',
     14            'pretty_version' => '6.3.4',
     15            'version' => '6.3.4.0',
     16            'reference' => '636bbdab472ebc1ec51e76a11d6d219bfbd8ff85',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • monei/tags/6.3.4/woocommerce-gateway-monei.php

    r3293325 r3303667  
    1111 * Plugin URI: https://wordpress.org/plugins/monei/
    1212 * Description: Accept Card, Apple Pay, Google Pay, Bizum, PayPal and many more payment methods in your store.
    13  * Version: 6.3.3
     13 * Version: 6.3.4
    1414 * Author: MONEI
    1515 * Author URI: https://www.monei.com/
  • monei/trunk/changelog.txt

    r3293325 r3303667  
    11*** MONEI Payments for WooCommerce ***
     2
     3
     42025-05-30 - version 6.3.4
     5* Fix - Redirect flow not working in classic checkout
    26
    372025-05-14 - version 6.3.3
  • monei/trunk/class-woocommerce-gateway-monei.php

    r3293325 r3303667  
    66 * @category Core
    77 * @package  Woocommerce_Gateway_Monei
    8  * @version  6.3.3
     8 * @version  6.3.4
    99 */
    1010
     
    2626         * @var string
    2727         */
    28         public $version = '6.3.3';
     28        public $version = '6.3.4';
    2929
    3030        /**
  • monei/trunk/readme.txt

    r3293325 r3303667  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 6.3.3
     6Stable tag: 6.3.4
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    104104== Changelog ==
    105105
     1062025-05-30 - version 6.3.4
     107* Fix - Redirect flow not working in classic checkout
     108
    1061092025-05-14 - version 6.3.3
    107110* Fix - Error copying old keys that hides the gateway
  • monei/trunk/src/Gateways/PaymentMethods/WCGatewayMoneiCC.php

    r3293325 r3303667  
    113113        $this->handler               = $this->subscriptions_service->getHandler();
    114114        if ( $this->handler ) {
    115             $this->supports = $this->handler->init_subscriptions($this->supports, $this->id);
     115            $this->supports = $this->handler->init_subscriptions( $this->supports, $this->id );
    116116        }
    117117
     
    342342    public function monei_scripts() {
    343343        // If merchant wants Component CC or is_add_payment_method_page that always use this component method.
    344         if ( $this->redirect_flow && ! is_checkout() && ! is_add_payment_method_page() && ($this->handler && ! $this->handler->is_subscription_change_payment_page() ) ) {
     344        if ( $this->redirect_flow || ( ! is_checkout() && ! is_add_payment_method_page() && ( $this->handler && ! $this->handler->is_subscription_change_payment_page() ) ) ) {
    345345            return;
    346346        }
  • monei/trunk/vendor/composer/installed.php

    r3293325 r3303667  
    22    'root' => array(
    33        'name' => '__root__',
    4         'pretty_version' => '6.3.3',
    5         'version' => '6.3.3.0',
    6         'reference' => 'b1ae5ef63f8597ea0effaf4663481129917b4d87',
     4        'pretty_version' => '6.3.4',
     5        'version' => '6.3.4.0',
     6        'reference' => '636bbdab472ebc1ec51e76a11d6d219bfbd8ff85',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '6.3.3',
    15             'version' => '6.3.3.0',
    16             'reference' => 'b1ae5ef63f8597ea0effaf4663481129917b4d87',
     14            'pretty_version' => '6.3.4',
     15            'version' => '6.3.4.0',
     16            'reference' => '636bbdab472ebc1ec51e76a11d6d219bfbd8ff85',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • monei/trunk/woocommerce-gateway-monei.php

    r3293325 r3303667  
    1111 * Plugin URI: https://wordpress.org/plugins/monei/
    1212 * Description: Accept Card, Apple Pay, Google Pay, Bizum, PayPal and many more payment methods in your store.
    13  * Version: 6.3.3
     13 * Version: 6.3.4
    1414 * Author: MONEI
    1515 * Author URI: https://www.monei.com/
Note: See TracChangeset for help on using the changeset viewer.