Plugin Directory

Changeset 2745605


Ignore:
Timestamp:
06/21/2022 03:47:34 AM (4 years ago)
Author:
payadvantage
Message:

Update plugin version

Location:
pay-advantage/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pay-advantage/trunk/README.txt

    r2721279 r2745605  
    33Tags: credit cards, payment gateway, online payments, e-commerce
    44Requires at least: 5.2
    5 Tested up to: 5.9.3
     5Tested up to: 6.0.0
    66Stable tag: 3.2.0
    77Requires PHP: 7.0
     
    4242
    4343== Changelog ==
     44
     45= 3.2.1 =
     46* Increased supported Wordpress version to 6.0.0
     47* Increased supported WooCommerce version to 6.5.1
    4448
    4549= 3.2.0 =
  • pay-advantage/trunk/includes/class-payadvantage-activator.php

    r2708855 r2745605  
    1313        add_option( 'pay_advantage_access_token', '' );
    1414        add_option( 'pay_advantage_access_token_expiry', '' );
    15         add_option( 'pay_advantage_require_mobile', PAYADV_OPTIONS_REQUIRE_MOBILE );
    16         add_option( 'pay_advantage_require_address', PAYADV_OPTIONS_REQUIRE_ADDRESS );
    17         add_option( 'pay_advantage_require_country', PAYADV_OPTIONS_REQUIRE_COUNTRY );
    18         add_option( 'pay_advantage_show_bpay', PAYADV_OPTIONS_SHOW_BPAY );
    19         add_option( 'pay_advantage_show_credit_card', PAYADV_OPTIONS_SHOW_CREDIT_CARD );
    20         add_option( 'pay_advantage_credit_card_description', PAYADV_OPTIONS_CREDIT_CARD_DESCRIPTION );
     15        add_option( 'pay_advantage_require_mobile', 1 );
     16        add_option( 'pay_advantage_require_address', 0 );
     17        add_option( 'pay_advantage_require_country', 0 );
     18        add_option( 'pay_advantage_show_bpay', 1 );
     19        add_option( 'pay_advantage_show_credit_card', 1 );
     20        add_option( 'pay_advantage_credit_card_description', 'Pay Advantage' );
    2121        add_option( 'pay_advantage_error_logging', '' );
    22         add_option( 'pay_advantage_show_widget_to_users_not_logged_in', PAYADV_OPTIONS_SHOW_WIDGET_TO_USERS_NOT_LOGGED_IN );
     22        add_option( 'pay_advantage_show_widget_to_users_not_logged_in', 0 );
    2323        add_option( 'pay_advantage_wc_oncharge_credit_card_fees', '1' );
    2424        add_option( 'pay_advantage_wc_paid_status', 'processing' );
    2525        add_option( 'pay_advantage_wc_cancel_status', 'pending' );
     26        add_option( 'pay_advantage_make_payment_button', 'Make a payment' );
    2627       
    2728        // ensure instance_id is not empty
  • pay-advantage/trunk/payadvantage.php

    r2722301 r2745605  
    1616 * Plugin URI:        https://www.payadvantage.com.au/
    1717 * Description:       This plugin adds a payment gateway to Woo Commerce as well as a widget for credit card and BPay payments.
    18  * Version:           3.2.0
     18 * Version:           3.2.1
    1919 * Author:            Pay Advantage
    2020 * Author URI:        https://www.payadvantage.com.au/
     
    2323 * Text Domain:       PayAdvantage
    2424 * Domain Path:       /languages
    25  * WC tested up to: 6.3.1
     25 * WC tested up to: 6.5.1
    2626 * WC requires at least: 3.7
    2727 */
     
    3030 * Current plugin version.
    3131 */
    32 define( 'PayAdvantagePluginVersion', '3.2.0' );
     32define( 'PayAdvantagePluginVersion', '3.2.1' );
    3333
    3434include( plugin_dir_path( __FILE__ ) . '/includes/payadvantage-files.php' );
     
    4444    define( 'PAYADV_API_URL_SANDBOX', 'https://api.test.payadvantage.com.au/latest' );
    4545    define( 'PAYADV_API_URL_LIVE', 'https://api.payadvantage.com.au/latest' );
    46     define( 'PAYADV_OPTIONS_REQUIRE_MOBILE', 1 );
    47     define( 'PAYADV_OPTIONS_REQUIRE_ADDRESS', 0 );
    48     define( 'PAYADV_OPTIONS_REQUIRE_COUNTRY', 0 );
    49     define( 'PAYADV_OPTIONS_SHOW_BPAY', 1 );
    50     define( 'PAYADV_OPTIONS_SHOW_CREDIT_CARD', 1 );
    51     define( 'PAYADV_OPTIONS_CREDIT_CARD_DESCRIPTION', 'Pay Advantage' );
    52     define( 'PAYADV_OPTIONS_SHOW_WIDGET_TO_USERS_NOT_LOGGED_IN', 0 );
    5346    define( 'PAYADV_MAX_LOG_SIZE_CHARS', 2000 );
    5447}
Note: See TracChangeset for help on using the changeset viewer.