Plugin Directory

Changeset 3400295


Ignore:
Timestamp:
11/21/2025 09:33:34 AM (6 weeks ago)
Author:
PerfectSolution
Message:

Update trunk/ - 7.5.1

Location:
woocommerce-quickpay
Files:
6 edited
1 copied

Legend:

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

    r3395304 r3400295  
    44Requires at least: 6.7
    55Tested up to: 6.8
    6 Stable tag: 7.5.0
     6Stable tag: 7.5.1
    77License: GPLv2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39= 7.5.1 =
     40* Feat: Adding WordPress home URL domain name to referer_url when creating transactions.
     41
    3942= 7.5.0 =
    4043* Fik: Changed plugin display name to Quickpay for WooCommerce to comply with the WooCommerce trademark and WP guidelines.
  • woocommerce-quickpay/tags/7.5.1/classes/api/woocommerce-quickpay-api-transaction.php

    r3395304 r3400295  
    184184            'google_analytics_tracking_id' => WC_QP()->s( 'quickpay_google_analytics_tracking_id' ),
    185185            'customer_email'               => $order->get_billing_email(),
     186            'referer_url'                  => wp_parse_url( home_url(), PHP_URL_HOST ),
    186187        ];
    187188
  • woocommerce-quickpay/tags/7.5.1/woocommerce-quickpay.php

    r3395304 r3400295  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your Quickpay payment gateway into your WooCommerce installation.
    6  * Version: 7.5.0
     6 * Version: 7.5.1
    77 * Author: Perfect Solution
    88 * Text Domain: woocommerce-quickpay
     
    2222}
    2323
    24 define( 'WCQP_VERSION', '7.5.0' );
     24define( 'WCQP_VERSION', '7.5.1' );
    2525define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2626define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
  • woocommerce-quickpay/trunk/README.txt

    r3395304 r3400295  
    44Requires at least: 6.7
    55Tested up to: 6.8
    6 Stable tag: 7.5.0
     6Stable tag: 7.5.1
    77License: GPLv2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39= 7.5.1 =
     40* Feat: Adding WordPress home URL domain name to referer_url when creating transactions.
     41
    3942= 7.5.0 =
    4043* Fik: Changed plugin display name to Quickpay for WooCommerce to comply with the WooCommerce trademark and WP guidelines.
  • woocommerce-quickpay/trunk/classes/api/woocommerce-quickpay-api-transaction.php

    r3395304 r3400295  
    184184            'google_analytics_tracking_id' => WC_QP()->s( 'quickpay_google_analytics_tracking_id' ),
    185185            'customer_email'               => $order->get_billing_email(),
     186            'referer_url'                  => wp_parse_url( home_url(), PHP_URL_HOST ),
    186187        ];
    187188
  • woocommerce-quickpay/trunk/woocommerce-quickpay.php

    r3395304 r3400295  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your Quickpay payment gateway into your WooCommerce installation.
    6  * Version: 7.5.0
     6 * Version: 7.5.1
    77 * Author: Perfect Solution
    88 * Text Domain: woocommerce-quickpay
     
    2222}
    2323
    24 define( 'WCQP_VERSION', '7.5.0' );
     24define( 'WCQP_VERSION', '7.5.1' );
    2525define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2626define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.