Changeset 3069569
- Timestamp:
- 04/12/2024 12:24:40 PM (2 years ago)
- Location:
- squad-payment-gateway/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
squad-payment-gateway.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
squad-payment-gateway/trunk/README.md
r3069552 r3069569 9 9 - **Requires at least:** 4.4 10 10 - **Tested up to:** 6.0.1 11 - **Stable tag:** 1.0.1 111 - **Stable tag:** 1.0.12 12 12 - **License:** MIT - see below 13 13 - **License URI:** https://www.gnu.org/licenses/gpl-2.0.html -
squad-payment-gateway/trunk/readme.txt
r3069564 r3069569 7 7 Requires PHP : 7.4 8 8 Tested up to : 6.6 9 Stable tag : 1.0.1 19 Stable tag : 1.0.12 10 10 11 11 License: MIT - see below … … 59 59 == Changelog == 60 60 61 = 1.0.1 1- Mar 22, 2024 =61 = 1.0.12 - Mar 22, 2024 = 62 62 * Tweak: Declare compatibility for High Performance Order Storage (HPOS) 63 63 * Tweak: WooCommerce 8.3 compatibility -
squad-payment-gateway/trunk/squad-payment-gateway.php
r3054424 r3069569 2 2 3 3 /** 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 16 15 * 17 16 * Class WC_Gateway_Squad file. … … 24 23 } 25 24 define('WC_SQUAD_MAIN_FILE', __FILE__); 26 define('WC_SQUAD_VERSION', '1.0.1 0');25 define('WC_SQUAD_VERSION', '1.0.12'); 27 26 28 27 if (!in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) return; … … 65 64 66 65 66 add_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 67 75 /** 68 76 * Registers WooCommerce Blocks integration. … … 80 88 } 81 89 } 90 82 91 add_action( 'woocommerce_blocks_loaded', 'tbz_wc_squad_gateway_woocommerce_block_support' );
Note: See TracChangeset
for help on using the changeset viewer.