Plugin Directory

Changeset 3063657


Ignore:
Timestamp:
04/03/2024 11:36:08 AM (21 months ago)
Author:
PerfectSolution
Message:

Update trunk/ - 7.3.1

Location:
woocommerce-quickpay
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-quickpay/tags/7.3.1/README.txt

    r3049352 r3063657  
    2828
    2929== Changelog ==
     30= 7.3.1 =
     31* Fix: Setting quickpay_complete_on_capture was missing from the settings UI
     32
    3033= 7.3.0 =
    3134* Feat: MobilePay Checkout has been removed due to EOL of the product after MobilePay/Vipps merge.
  • woocommerce-quickpay/tags/7.3.1/classes/woocommerce-quickpay-settings.php

    r3045559 r3063657  
    119119                    'default'     => 'no',
    120120                    'desc_tip'    => true,
     121                ],
     122                'quickpay_complete_on_capture'          => [
     123                    'title'       => __( 'Complete order on capture callbacks', 'woo-quickpay' ),
     124                    'type'        => 'checkbox',
     125                    'label'       => __( 'Enable', 'woo-quickpay' ),
     126                    'description' => __( 'When enabled, an order will be automatically completed when capture callbacks are sent to WooCommerce. Callbacks are sent by QuickPay when the payment is captured from either the shop or the QuickPay manager. Keep disabled to manually complete orders. ', 'woo-quickpay' ),
     127                    'default'     => 'no',
    121128                ],
    122129                'quickpay_payment_cancelled_order_transition_status' => [
  • woocommerce-quickpay/tags/7.3.1/woocommerce-quickpay.php

    r3049352 r3063657  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation.
    6  * Version: 7.3.0
     6 * Version: 7.3.1
    77 * Author: Perfect Solution
    88 * Text Domain: woo-quickpay
     
    1919}
    2020
    21 define( 'WCQP_VERSION', '7.3.0' );
     21define( 'WCQP_VERSION', '7.3.1' );
    2222define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2323define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
  • woocommerce-quickpay/trunk/README.txt

    r3049352 r3063657  
    2828
    2929== Changelog ==
     30= 7.3.1 =
     31* Fix: Setting quickpay_complete_on_capture was missing from the settings UI
     32
    3033= 7.3.0 =
    3134* Feat: MobilePay Checkout has been removed due to EOL of the product after MobilePay/Vipps merge.
  • woocommerce-quickpay/trunk/classes/woocommerce-quickpay-settings.php

    r3045559 r3063657  
    119119                    'default'     => 'no',
    120120                    'desc_tip'    => true,
     121                ],
     122                'quickpay_complete_on_capture'          => [
     123                    'title'       => __( 'Complete order on capture callbacks', 'woo-quickpay' ),
     124                    'type'        => 'checkbox',
     125                    'label'       => __( 'Enable', 'woo-quickpay' ),
     126                    'description' => __( 'When enabled, an order will be automatically completed when capture callbacks are sent to WooCommerce. Callbacks are sent by QuickPay when the payment is captured from either the shop or the QuickPay manager. Keep disabled to manually complete orders. ', 'woo-quickpay' ),
     127                    'default'     => 'no',
    121128                ],
    122129                'quickpay_payment_cancelled_order_transition_status' => [
  • woocommerce-quickpay/trunk/woocommerce-quickpay.php

    r3049352 r3063657  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation.
    6  * Version: 7.3.0
     6 * Version: 7.3.1
    77 * Author: Perfect Solution
    88 * Text Domain: woo-quickpay
     
    1919}
    2020
    21 define( 'WCQP_VERSION', '7.3.0' );
     21define( 'WCQP_VERSION', '7.3.1' );
    2222define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2323define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.