Plugin Directory

Changeset 3234701


Ignore:
Timestamp:
02/04/2025 12:42:06 PM (14 months ago)
Author:
lwsdevelopers
Message:

Version tags

Location:
coupon-individual-use-solver-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • coupon-individual-use-solver-for-woocommerce/trunk/lws-coupon-individual-use-solver.php

    r3114119 r3234701  
    66 * Author: Long Watch Studio
    77 * Author URI: https://longwatchstudio.com
    8  * Version: 1.1.5
     8 * Version: 1.1.6
    99 * License: Copyright LongWatchStudio 2023
    1010 * Text Domain: lws-cius
    1111 * Domain Path: /languages
    1212 * WC requires at least: 7.1.0
    13  * WC tested up to: 9.0
     13 * WC tested up to: 9.6
    1414 *
    1515 *
     
    3737            });
    3838
    39             \add_action('plugins_loaded', array($instance, 'load_plugin_textdomain'));
     39            \add_action('after_setup_theme', function() {
     40                \load_plugin_textdomain('lws-cius', FALSE, basename(dirname(__FILE__)) . '/languages/');
     41            });
    4042            $instance->install();
    4143        }
     
    5052        if( empty($version) ){
    5153            if( !function_exists('get_plugin_data') ) require_once(ABSPATH . 'wp-admin/includes/plugin.php');
    52             $data = \get_plugin_data(__FILE__, false);
     54            $data = \get_plugin_data(__FILE__, false, false);
    5355            $version = (isset($data['Version']) ? $data['Version'] : '0');
    5456        }
     
    5658    }
    5759
    58     /** Load translation file */
    59     function load_plugin_textdomain()
    60     {
    61         load_plugin_textdomain('lws-cius', FALSE, basename(dirname(__FILE__)) . '/languages/');
    62     }
    63 
    6460    private function defineConstants()
    6561    {
    66         define('LWSDEV_COUPON_CONFLICTS_VERSION' , '1.1.5');
     62        define('LWSDEV_COUPON_CONFLICTS_VERSION' , '1.1.6');
    6763        define('LWSDEV_COUPON_CONFLICTS_FILE'    , __FILE__);
    6864        define('LWSDEV_COUPON_CONFLICTS_DOMAIN'  , 'lws-cius');
  • coupon-individual-use-solver-for-woocommerce/trunk/readme.txt

    r3114119 r3234701  
    33Tags: woocommerce, product, sale, coupon
    44Requires at least: 5.3
    5 Tested up to: 6.6
     5Tested up to: 6.7
    66Requires PHP: 7.0.0
    7 Stable tag: 1.1.5
     7Stable tag: 1.1.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5959== Changelog ==
    6060
     61= 1.1.6 =
     62* Tag - WordPress 6.7 support
     63* Tag - WooCommerce 9.6 support
     64
    6165= 1.1.5 =
    6266* Tag - WordPress 6.6 support
Note: See TracChangeset for help on using the changeset viewer.