Changeset 2937015
- Timestamp:
- 07/11/2023 09:45:30 AM (2 years ago)
- Location:
- new-zealand-shipping-zones-for-woocommerce
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from new-zealand-shipping-zones-for-woocommerce/trunk)
-
tags/1.0.2/README.txt (modified) (2 diffs)
-
tags/1.0.2/woocommerce-nz-shipping-zones.php (modified) (3 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/woocommerce-nz-shipping-zones.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
new-zealand-shipping-zones-for-woocommerce/tags/1.0.2/README.txt
r2899636 r2937015 7 7 Tested up to: 6.2 8 8 Requires PHP: 5.6.2 9 Stable tag: 1.0. 19 Stable tag: 1.0.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.0.2 = 90 91 * Fix: Declare plugin compatibility for WooCommerce High Performance Order Storage (HPOS) data structure. Affects future installs with HPOS enabled by default or when HPOS is enabled manually via Settings > Advanced > Experimental Features. See [High Performance Order Storage Upgrade Recipe book](https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility). 92 89 93 = 1.0.1 = 90 94 -
new-zealand-shipping-zones-for-woocommerce/tags/1.0.2/woocommerce-nz-shipping-zones.php
r2899636 r2937015 14 14 * Plugin URI: https://wordpress.org/plugins/new-zealand-shipping-zones-for-woocommerce/ 15 15 * Description: Sets up New Zealand standard and rural shipping zones for WooCommerce. 16 * Version: 1.0. 116 * Version: 1.0.2 17 17 * Author: Daniel Shaw 18 18 * Author URI: https://danielshaw.co.nz/ … … 24 24 * Domain Path: /languages 25 25 * WC requires at least: 2.6.0 26 * WC tested up to: 7. 6.026 * WC tested up to: 7.8.2 27 27 */ 28 28 … … 35 35 * The current plugin version. 36 36 */ 37 define( 'WOOCOMMERCE_NZ_SHIPPING_ZONES_VERSION', '1.0.1' ); 37 define( 'WOOCOMMERCE_NZ_SHIPPING_ZONES_VERSION', '1.0.2' ); 38 39 /** 40 * Declares compatibility with High Performance Order Storage data structure. 41 * 42 * @link https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility 43 * @since 1.0.2 44 */ 45 add_action( 'before_woocommerce_init', function() { 46 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 47 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 48 } 49 } ); 38 50 39 51 /** -
new-zealand-shipping-zones-for-woocommerce/trunk/README.txt
r2899636 r2937015 7 7 Tested up to: 6.2 8 8 Requires PHP: 5.6.2 9 Stable tag: 1.0. 19 Stable tag: 1.0.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.0.2 = 90 91 * Fix: Declare plugin compatibility for WooCommerce High Performance Order Storage (HPOS) data structure. Affects future installs with HPOS enabled by default or when HPOS is enabled manually via Settings > Advanced > Experimental Features. See [High Performance Order Storage Upgrade Recipe book](https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility). 92 89 93 = 1.0.1 = 90 94 -
new-zealand-shipping-zones-for-woocommerce/trunk/woocommerce-nz-shipping-zones.php
r2899636 r2937015 14 14 * Plugin URI: https://wordpress.org/plugins/new-zealand-shipping-zones-for-woocommerce/ 15 15 * Description: Sets up New Zealand standard and rural shipping zones for WooCommerce. 16 * Version: 1.0. 116 * Version: 1.0.2 17 17 * Author: Daniel Shaw 18 18 * Author URI: https://danielshaw.co.nz/ … … 24 24 * Domain Path: /languages 25 25 * WC requires at least: 2.6.0 26 * WC tested up to: 7. 6.026 * WC tested up to: 7.8.2 27 27 */ 28 28 … … 35 35 * The current plugin version. 36 36 */ 37 define( 'WOOCOMMERCE_NZ_SHIPPING_ZONES_VERSION', '1.0.1' ); 37 define( 'WOOCOMMERCE_NZ_SHIPPING_ZONES_VERSION', '1.0.2' ); 38 39 /** 40 * Declares compatibility with High Performance Order Storage data structure. 41 * 42 * @link https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility 43 * @since 1.0.2 44 */ 45 add_action( 'before_woocommerce_init', function() { 46 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 47 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 48 } 49 } ); 38 50 39 51 /**
Note: See TracChangeset
for help on using the changeset viewer.