Changeset 2994019
- Timestamp:
- 11/10/2023 03:20:26 PM (2 years ago)
- Location:
- datafeedr-woocommerce-importer
- Files:
-
- 4 edited
- 1 copied
-
tags/1.3.8 (copied) (copied from datafeedr-woocommerce-importer/trunk)
-
tags/1.3.8/datafeedr-woocommerce-importer.php (modified) (3 diffs)
-
tags/1.3.8/readme.txt (modified) (2 diffs)
-
trunk/datafeedr-woocommerce-importer.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
datafeedr-woocommerce-importer/tags/1.3.8/datafeedr-woocommerce-importer.php
r2930963 r2994019 10 10 Requires PHP: 7.4 11 11 Requires at least: 3.8 12 Tested up to: 6. 2.3-alpha13 Version: 1.3. 712 Tested up to: 6.4.2-alpha 13 Version: 1.3.8 14 14 15 15 WC requires at least: 3.0 16 WC tested up to: 7.716 WC tested up to: 8.2 17 17 18 18 Datafeedr WooCommerce Importer plugin … … 43 43 * Define constants. 44 44 */ 45 define( 'DFRPSWC_VERSION', '1.3. 7' );45 define( 'DFRPSWC_VERSION', '1.3.8' ); 46 46 define( 'DFRPSWC_DB_VERSION', '1.2.0' ); 47 47 define( 'DFRPSWC_URL', plugin_dir_url( __FILE__ ) ); … … 63 63 require_once dirname( __FILE__ ) . '/actions.php'; 64 64 require_once dirname( __FILE__ ) . '/filters.php'; 65 66 /** 67 * Declaring WooCommerce HPOS compatibility. 68 * 69 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book 70 * 71 * @since 1.3.8 72 */ 73 add_action( 'before_woocommerce_init', function () { 74 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 75 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 76 } 77 } ); 65 78 66 79 /** -
datafeedr-woocommerce-importer/tags/1.3.8/readme.txt
r2930963 r2994019 8 8 Requires PHP: 7.4 9 9 Requires at least: 3.8 10 Tested up to: 6. 2.3-alpha11 Stable tag: 1.3. 710 Tested up to: 6.4.2-alpha 11 Stable tag: 1.3.8 12 12 13 13 Import products from the Datafeedr API into your WooCommerce store. … … 200 200 == Changelog == 201 201 202 = 1.3.8 - 2023/11/10 = 203 * Updated "tested up to" value 204 * Declaring WooCommerce HPOS compatibility. 205 202 206 = 1.3.7 - 2023/06/26 = 203 207 * Updated some data in readme. -
datafeedr-woocommerce-importer/trunk/datafeedr-woocommerce-importer.php
r2930963 r2994019 10 10 Requires PHP: 7.4 11 11 Requires at least: 3.8 12 Tested up to: 6. 2.3-alpha13 Version: 1.3. 712 Tested up to: 6.4.2-alpha 13 Version: 1.3.8 14 14 15 15 WC requires at least: 3.0 16 WC tested up to: 7.716 WC tested up to: 8.2 17 17 18 18 Datafeedr WooCommerce Importer plugin … … 43 43 * Define constants. 44 44 */ 45 define( 'DFRPSWC_VERSION', '1.3. 7' );45 define( 'DFRPSWC_VERSION', '1.3.8' ); 46 46 define( 'DFRPSWC_DB_VERSION', '1.2.0' ); 47 47 define( 'DFRPSWC_URL', plugin_dir_url( __FILE__ ) ); … … 63 63 require_once dirname( __FILE__ ) . '/actions.php'; 64 64 require_once dirname( __FILE__ ) . '/filters.php'; 65 66 /** 67 * Declaring WooCommerce HPOS compatibility. 68 * 69 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book 70 * 71 * @since 1.3.8 72 */ 73 add_action( 'before_woocommerce_init', function () { 74 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 75 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 76 } 77 } ); 65 78 66 79 /** -
datafeedr-woocommerce-importer/trunk/readme.txt
r2930963 r2994019 8 8 Requires PHP: 7.4 9 9 Requires at least: 3.8 10 Tested up to: 6. 2.3-alpha11 Stable tag: 1.3. 710 Tested up to: 6.4.2-alpha 11 Stable tag: 1.3.8 12 12 13 13 Import products from the Datafeedr API into your WooCommerce store. … … 200 200 == Changelog == 201 201 202 = 1.3.8 - 2023/11/10 = 203 * Updated "tested up to" value 204 * Declaring WooCommerce HPOS compatibility. 205 202 206 = 1.3.7 - 2023/06/26 = 203 207 * Updated some data in readme.
Note: See TracChangeset
for help on using the changeset viewer.