Changeset 2726026
- Timestamp:
- 05/18/2022 11:38:05 AM (4 years ago)
- Location:
- woorule
- Files:
-
- 8 edited
- 1 copied
-
tags/2.7.6 (copied) (copied from woorule/trunk)
-
tags/2.7.6/README.txt (modified) (2 diffs)
-
tags/2.7.6/inc/class-woorule.php (modified) (1 diff)
-
tags/2.7.6/languages/woorule.pot (modified) (2 diffs)
-
tags/2.7.6/woorule.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/inc/class-woorule.php (modified) (1 diff)
-
trunk/languages/woorule.pot (modified) (2 diffs)
-
trunk/woorule.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woorule/tags/2.7.6/README.txt
r2719394 r2726026 3 3 Tags: rule, woocommerce, newsletter, marketing 4 4 Requires at least: 5.0.0 5 Tested up to: 5.95 Tested up to: 6.0 6 6 Requires PHP: 5.6+ 7 7 Stable tag: 2.7.5 … … 108 108 109 109 For more information, check out our [releases](https://github.com/rulecom/woorule/releases). 110 111 = 2.7.6 = 112 * Improved WooCommerce plugin detection, which in some rare cases would cause WooRule to not load 110 113 111 114 = 2.7.5 = -
woorule/tags/2.7.6/inc/class-woorule.php
r2719394 r2726026 62 62 */ 63 63 protected function is_woocommerce_activated() { 64 return in_array( 65 'woocommerce/woocommerce.php', 66 (array) apply_filters( 'active_plugins', get_option( 'active_plugins' ) ), 67 true 68 ); 64 return class_exists( 'WooCommerce', false ) || defined( 'WC_ABSPATH' ); 69 65 } 70 66 -
woorule/tags/2.7.6/languages/woorule.pot
r2719394 r2726026 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooRule 2.7. 5\n"5 "Project-Id-Version: WooRule 2.7.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woorule\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 12 12 "POT-Creation-Date: 2022-02-02T11:13:33+03:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.7. 5\n"14 "X-Generator: WP-CLI 2.7.6\n" 15 15 "X-Domain: woorule\n" 16 16 -
woorule/tags/2.7.6/woorule.php
r2719394 r2726026 9 9 * Plugin URI: http://github.com/rulecom/woorule 10 10 * Description: Rule integration for WooCommerce 11 * Version: 2.7. 511 * Version: 2.7.6 12 12 * Author: Rule 13 13 * Author URI: http://rule.se … … 15 15 * Text Domain: woorule 16 16 * Domain Path: /languages 17 * WC requires at least: 3.0.0 18 * WC tested up to: 6.5.1 17 19 * 18 20 * @package WooRule 19 21 */ 20 22 21 define( 'WOORULE_VERSION', '2.7. 5' );23 define( 'WOORULE_VERSION', '2.7.6' ); 22 24 define( 'WOORULE_PATH', plugin_dir_path( __FILE__ ) ); 23 25 define( 'WOORULE_URL', plugin_dir_url( __FILE__ ) ); -
woorule/trunk/README.txt
r2719394 r2726026 3 3 Tags: rule, woocommerce, newsletter, marketing 4 4 Requires at least: 5.0.0 5 Tested up to: 5.95 Tested up to: 6.0 6 6 Requires PHP: 5.6+ 7 7 Stable tag: 2.7.5 … … 108 108 109 109 For more information, check out our [releases](https://github.com/rulecom/woorule/releases). 110 111 = 2.7.6 = 112 * Improved WooCommerce plugin detection, which in some rare cases would cause WooRule to not load 110 113 111 114 = 2.7.5 = -
woorule/trunk/inc/class-woorule.php
r2719394 r2726026 62 62 */ 63 63 protected function is_woocommerce_activated() { 64 return in_array( 65 'woocommerce/woocommerce.php', 66 (array) apply_filters( 'active_plugins', get_option( 'active_plugins' ) ), 67 true 68 ); 64 return class_exists( 'WooCommerce', false ) || defined( 'WC_ABSPATH' ); 69 65 } 70 66 -
woorule/trunk/languages/woorule.pot
r2719394 r2726026 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooRule 2.7. 5\n"5 "Project-Id-Version: WooRule 2.7.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woorule\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 12 12 "POT-Creation-Date: 2022-02-02T11:13:33+03:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.7. 5\n"14 "X-Generator: WP-CLI 2.7.6\n" 15 15 "X-Domain: woorule\n" 16 16 -
woorule/trunk/woorule.php
r2719394 r2726026 9 9 * Plugin URI: http://github.com/rulecom/woorule 10 10 * Description: Rule integration for WooCommerce 11 * Version: 2.7. 511 * Version: 2.7.6 12 12 * Author: Rule 13 13 * Author URI: http://rule.se … … 15 15 * Text Domain: woorule 16 16 * Domain Path: /languages 17 * WC requires at least: 3.0.0 18 * WC tested up to: 6.5.1 17 19 * 18 20 * @package WooRule 19 21 */ 20 22 21 define( 'WOORULE_VERSION', '2.7. 5' );23 define( 'WOORULE_VERSION', '2.7.6' ); 22 24 define( 'WOORULE_PATH', plugin_dir_path( __FILE__ ) ); 23 25 define( 'WOORULE_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.