Plugin Directory

Changeset 3351544


Ignore:
Timestamp:
08/27/2025 08:42:05 PM (7 months ago)
Author:
weeconnectpay
Message:

Deploying version 3.15.2 from pipeline

Location:
weeconnectpay
Files:
642 added
5 edited

Legend:

Unmodified
Added
Removed
  • weeconnectpay/trunk/README.txt

    r3325292 r3351544  
    66Author: WeeConnectPay
    77Contributors: weeconnectpay
    8 Stable Tag: 3.15.1
     8Stable Tag: 3.15.2
    99Requires at least: 5.6
    1010Tested Up To: 6.8.1
     
    4646
    4747<strong>Further minimum requirements for WooCommerce:</strong>
    48 PHP 7.2 or greater
     48PHP 7.4 or greater
    4949PHP Module INTL enabled
    5050MySQL 5.6 or greater
     
    9494
    9595=Does WeeConnectPay allow subscription payments?=
    96 You must have a subscription plugin on your online store for WeeConnectPay to take subscription payments. It is also possible to manage subscription payments on the Clover web portal.
     96Yes! WeeConnectPay fully supports subscription and recurring payments. You can use WooCommerce Subscriptions or other compatible subscription plugins with WeeConnectPay. Subscription payments are also manageable through the Clover web portal.
    9797
    9898=Does the vendor get their money directly no matter the used payment option?=
     
    128128
    129129== Changelog ==
     130= 3.15.2 =
     131* Fixed a fatal error while attempting to display an error message during plugin activation
     132
    130133= 3.15.1 =
    131134* Added Clover order printing functionality - orders are now automatically sent to your default Clover printer after successful payment
  • weeconnectpay/trunk/includes/modules/WeeConnectPay/Integration/Authentication.php

    r3246734 r3351544  
    1616use WeeConnectPay\WordPress\Plugin\includes\WeeConnectPayUtilities;
    1717use WP_Error;
    18 use WeeConnectPay\Utils\LogService;
     18use WeeConnectPay\Integrations\LogService;
    1919
    2020class Authentication {
  • weeconnectpay/trunk/vendor/composer/installed.php

    r3325292 r3351544  
    22    'root' => array(
    33        'name' => '__root__',
    4         'pretty_version' => '3.15.1',
    5         'version' => '3.15.1.0',
    6         'reference' => '4932f6afd8f35a26daa113ff683b127d52fb7337',
     4        'pretty_version' => '3.15.2',
     5        'version' => '3.15.2.0',
     6        'reference' => '5dbdae267dfdf5cc830ba735b1230b876aa7ba5a',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '3.15.1',
    15             'version' => '3.15.1.0',
    16             'reference' => '4932f6afd8f35a26daa113ff683b127d52fb7337',
     14            'pretty_version' => '3.15.2',
     15            'version' => '3.15.2.0',
     16            'reference' => '5dbdae267dfdf5cc830ba735b1230b876aa7ba5a',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • weeconnectpay/trunk/vendor/composer/platform_check.php

    r2769072 r3351544  
    2020        }
    2121    }
    22     trigger_error(
    23         'Composer detected issues in your platform: ' . implode(' ', $issues),
    24         E_USER_ERROR
     22    throw new \RuntimeException(
     23        'Composer detected issues in your platform: ' . implode(' ', $issues)
    2524    );
    2625}
  • weeconnectpay/trunk/weeconnectpay.php

    r3325292 r3351544  
    1818 * Description:       Integrate Clover Payments with your WooCommerce online store.
    1919 * Tags:              clover, payments, weeconnect, e-commerce, gateway
    20  * Version:           3.15.1
     20 * Version:           3.15.2
    2121 * Requires at least: 5.6
    2222 * Tested Up To:      6.8.1
     
    3838    die;
    3939}
    40 const WEECONNECT_VERSION = '3.15.1';
     40const WEECONNECT_VERSION = '3.15.2';
    4141
    4242define( 'WEECONNECTPAY_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.