Changeset 2967862
- Timestamp:
- 09/16/2023 07:17:37 PM (3 years ago)
- Location:
- autocomplete-address-for-woocommerce
- Files:
-
- 8 added
- 2 edited
-
tags/1.2.0 (added)
-
tags/1.2.0/assets (added)
-
tags/1.2.0/assets/js (added)
-
tags/1.2.0/assets/js/autocomplete-address.4dd81181ce7c15cd78b1.js (added)
-
tags/1.2.0/autocomplete-address-for-woocommerce.php (added)
-
tags/1.2.0/includes (added)
-
tags/1.2.0/includes/class-wc-checkout-scripts.php (added)
-
tags/1.2.0/readme.txt (added)
-
trunk/autocomplete-address-for-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autocomplete-address-for-woocommerce/trunk/autocomplete-address-for-woocommerce.php
r2553002 r2967862 6 6 * Author: Fernando Acosta 7 7 * Author URI: https://fernandoacosta.net 8 * Version: 1. 1.08 * Version: 1.2.0 9 9 * License: GPLv2 or later 10 10 * WC requires at least: 3.3.0 11 * WC tested up to: 5.4.111 * WC tested up to: 8.8.1 12 12 * 13 13 * This plugin is free software: you can redistribute it and/or modify … … 38 38 * @var float 39 39 */ 40 const VERSION = '1. 1.0';40 const VERSION = '1.2.0'; 41 41 42 42 /** … … 103 103 104 104 add_action( 'plugins_loaded', array( 'WC_Autocomplete_Address', 'get_instance' ) ); 105 106 // Declare compatibility with custom order tables for WooCommerce. 107 add_action( 108 'before_woocommerce_init', 109 function () { 110 if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) { 111 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 112 } 113 } 114 ); -
autocomplete-address-for-woocommerce/trunk/readme.txt
r2501924 r2967862 4 4 Tags: endereço, woocommerce, cep, correios, autocomplete, address 5 5 Requires at least: 5.0.0 6 Tested up to: 5.76 Tested up to: 6.3 7 7 Stable tag: trunk 8 8 Requires PHP: 7.0.0 … … 45 45 == Changelog == 46 46 47 = 1.2.0 - 2023/09/16 = 48 49 - WooCommerce HPOS 50 47 51 = 1.0.1 - 2021/03/23 = 48 52
Note: See TracChangeset
for help on using the changeset viewer.