Plugin Directory

Changeset 3069569


Ignore:
Timestamp:
04/12/2024 12:24:40 PM (2 years ago)
Author:
squadco
Message:

run updtae

Location:
squad-payment-gateway/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • squad-payment-gateway/trunk/README.md

    r3069552 r3069569  
    99- **Requires at least:** 4.4
    1010- **Tested up to:** 6.0.1
    11 - **Stable tag:** 1.0.11
     11- **Stable tag:** 1.0.12
    1212- **License:** MIT - see below
    1313- **License URI:** https://www.gnu.org/licenses/gpl-2.0.html
  • squad-payment-gateway/trunk/readme.txt

    r3069564 r3069569  
    77Requires PHP : 7.4
    88Tested up to : 6.6
    9 Stable tag : 1.0.11
     9Stable tag : 1.0.12
    1010
    1111License: MIT - see below
     
    5959== Changelog ==
    6060
    61 = 1.0.11 - Mar 22, 2024 =
     61= 1.0.12 - Mar 22, 2024 =
    6262*   Tweak: Declare compatibility for High Performance Order Storage (HPOS)
    6363*   Tweak: WooCommerce 8.3 compatibility
  • squad-payment-gateway/trunk/squad-payment-gateway.php

    r3054424 r3069569  
    22
    33/**
    4  * Plugin Name: Squad WooCommerce Payment Gateway
    5  * Plugin URI: https://github.com/SquadInc/squad-wp-plugin
    6  * Author: Squad Developers
    7  * Author URI: http://squadco.com/
    8  * Description: Provides Seamless Payments with Multiple payment options.
    9  * Version: 1.0.10
    10  * WC requires at least: 7.0
    11  * WC tested up to: 8.3
    12  * Tested up to: 8.3
    13  * License: GPL2
    14  * License URL: http://www.gnu.org/licenses/gpl-2.0.txt
    15  * text-domain: squad-payment-gateway
     4 * Plugin Name:             Squad WooCommerce Payment Gateway
     5 * Plugin URI:              https://github.com/SquadInc/squad-wp-plugin
     6 * Author:                  Squad Developers
     7 * Author URI:              http://squadco.com/
     8 * Description:             Provides Seamless Payments with Multiple payment options.
     9 * Version:                 1.0.12
     10 * WC requires at least:    8.0
     11 * WC tested up to:         8.6
     12 * License:                 GPL2
     13 * License URL:             http://www.gnu.org/licenses/gpl-2.0.txt
     14 * text-domain:             squad-payment-gateway
    1615 *
    1716 * Class WC_Gateway_Squad file.
     
    2423}
    2524define('WC_SQUAD_MAIN_FILE', __FILE__);
    26 define('WC_SQUAD_VERSION', '1.0.10');
     25define('WC_SQUAD_VERSION', '1.0.12');
    2726
    2827if (!in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) return;
     
    6564
    6665
     66add_action(
     67    'before_woocommerce_init',
     68    function() {
     69        if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     70            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     71        }
     72    }
     73);
     74
    6775/**
    6876 * Registers WooCommerce Blocks integration.
     
    8088    }
    8189}
     90
    8291add_action( 'woocommerce_blocks_loaded', 'tbz_wc_squad_gateway_woocommerce_block_support' );
Note: See TracChangeset for help on using the changeset viewer.