Plugin Directory

Changeset 2726026


Ignore:
Timestamp:
05/18/2022 11:38:05 AM (4 years ago)
Author:
rulecom
Message:

Update to version 2.7.6 from GitHub

Location:
woorule
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woorule/tags/2.7.6/README.txt

    r2719394 r2726026  
    33Tags: rule, woocommerce, newsletter, marketing
    44Requires at least: 5.0.0
    5 Tested up to: 5.9
     5Tested up to: 6.0
    66Requires PHP: 5.6+
    77Stable tag: 2.7.5
     
    108108
    109109For 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
    110113
    111114= 2.7.5 =
  • woorule/tags/2.7.6/inc/class-woorule.php

    r2719394 r2726026  
    6262     */
    6363    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' );
    6965    }
    7066
  • woorule/tags/2.7.6/languages/woorule.pot

    r2719394 r2726026  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooRule 2.7.5\n"
     5"Project-Id-Version: WooRule 2.7.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woorule\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1212"POT-Creation-Date: 2022-02-02T11:13:33+03:00\n"
    1313"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"
    1515"X-Domain: woorule\n"
    1616
  • woorule/tags/2.7.6/woorule.php

    r2719394 r2726026  
    99 * Plugin URI:      http://github.com/rulecom/woorule
    1010 * Description:     Rule integration for WooCommerce
    11  * Version:         2.7.5
     11 * Version:         2.7.6
    1212 * Author:          Rule
    1313 * Author URI:      http://rule.se
     
    1515 * Text Domain:     woorule
    1616 * Domain Path:     /languages
     17 * WC requires at least: 3.0.0
     18 * WC tested up to: 6.5.1
    1719 *
    1820 * @package WooRule
    1921 */
    2022
    21 define( 'WOORULE_VERSION', '2.7.5' );
     23define( 'WOORULE_VERSION', '2.7.6' );
    2224define( 'WOORULE_PATH', plugin_dir_path( __FILE__ ) );
    2325define( 'WOORULE_URL', plugin_dir_url( __FILE__ ) );
  • woorule/trunk/README.txt

    r2719394 r2726026  
    33Tags: rule, woocommerce, newsletter, marketing
    44Requires at least: 5.0.0
    5 Tested up to: 5.9
     5Tested up to: 6.0
    66Requires PHP: 5.6+
    77Stable tag: 2.7.5
     
    108108
    109109For 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
    110113
    111114= 2.7.5 =
  • woorule/trunk/inc/class-woorule.php

    r2719394 r2726026  
    6262     */
    6363    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' );
    6965    }
    7066
  • woorule/trunk/languages/woorule.pot

    r2719394 r2726026  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooRule 2.7.5\n"
     5"Project-Id-Version: WooRule 2.7.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woorule\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1212"POT-Creation-Date: 2022-02-02T11:13:33+03:00\n"
    1313"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"
    1515"X-Domain: woorule\n"
    1616
  • woorule/trunk/woorule.php

    r2719394 r2726026  
    99 * Plugin URI:      http://github.com/rulecom/woorule
    1010 * Description:     Rule integration for WooCommerce
    11  * Version:         2.7.5
     11 * Version:         2.7.6
    1212 * Author:          Rule
    1313 * Author URI:      http://rule.se
     
    1515 * Text Domain:     woorule
    1616 * Domain Path:     /languages
     17 * WC requires at least: 3.0.0
     18 * WC tested up to: 6.5.1
    1719 *
    1820 * @package WooRule
    1921 */
    2022
    21 define( 'WOORULE_VERSION', '2.7.5' );
     23define( 'WOORULE_VERSION', '2.7.6' );
    2224define( 'WOORULE_PATH', plugin_dir_path( __FILE__ ) );
    2325define( 'WOORULE_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.