Changeset 3143946
- Timestamp:
- 08/29/2024 08:17:47 PM (19 months ago)
- Location:
- crowdfunding-for-woocommerce/trunk
- Files:
-
- 2 edited
-
crowdfunding-for-woocommerce.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
crowdfunding-for-woocommerce/trunk/crowdfunding-for-woocommerce.php
r2938952 r3143946 4 4 Plugin URI: https://wpwham.com/products/crowdfunding-for-woocommerce/ 5 5 Description: Crowdfunding products for WooCommerce. 6 Version: 3.1.1 16 Version: 3.1.12 7 7 Author: WP Wham 8 8 Author URI: https://wpwham.com/ 9 9 Text Domain: crowdfunding-for-woocommerce 10 10 Domain Path: /langs 11 WC requires at least: 3.0 12 WC tested up to: 7.8 13 Copyright: © 2018-2023 WP Wham. All rights reserved. 11 Copyright: © 2018-2024 WP Wham. All rights reserved. 14 12 License: GNU General Public License v3.0 15 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 35 33 } 36 34 35 add_action( 'before_woocommerce_init', function() { 36 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 37 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 38 } 39 } ); 40 37 41 if ( ! class_exists( 'Alg_Woocommerce_Crowdfunding' ) ) : 38 42 … … 41 45 * 42 46 * @class Alg_Woocommerce_Crowdfunding 43 * @version 3.1.1 147 * @version 3.1.12 44 48 */ 45 49 final class Alg_Woocommerce_Crowdfunding { … … 54 58 * @since 2.3.0 55 59 */ 56 public $version = '3.1.1 1';60 public $version = '3.1.12'; 57 61 58 62 /** -
crowdfunding-for-woocommerce/trunk/readme.txt
r2938952 r3143946 3 3 Tags: woocommerce, crowdfunding 4 4 Requires at least: 4.4 5 Tested up to: 6. 26 Stable tag: 3.1.1 15 Tested up to: 6.6 6 Stable tag: 3.1.12 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 76 76 77 77 == Changelog == 78 79 = 3.1.12 - 2024-08-29 = 80 * UPDATE: bump tested versions. 78 81 79 82 = 3.1.11 - 2023-07-15 =
Note: See TracChangeset
for help on using the changeset viewer.