Plugin Directory

Changeset 2572551

Timestamp:
07/26/2021 06:43:27 PM (3 years ago)
Author:
DrewAPicture
Message:

Version 1.0.2 release.

Location:
affiliatewp-affiliate-qr-codes
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • affiliatewp-affiliate-qr-codes/tags/1.0.2/affiliatewp-affiliate-qr-codes.php

    r2540749 r2572551  
    66 * Author: Sandhills Development, LLC
    77 * Author URI: https://sandhillsdev.com
    8  * Version: 1.0.1
     8 * Version: 1.0.
    99 * Text Domain: affiliatewp-affiliate-qr-codes
    1010 *
     
    102102        if ( class_exists( 'AffiliateWP_Affiliate_QR_Codes' ) ) {
    103103
    104             // Bootstrap to affwp_plugins_loaded.
    105             add_action( 'plugins_loaded', array( $this, 'bootstrap' ), 100 );
     104            $affwp_version = get_option( 'affwp_version' );
     105
     106            if ( version_compare( $affwp_version, '2.7', '<' ) ) {
     107                add_action( 'plugins_loaded', array( $this, 'bootstrap' ), 100 );
     108            } else {
     109                add_action( 'affwp_plugins_loaded', array( $this, 'bootstrap' ), 100 );
     110            }
    106111
    107112            // Register the activation hook.
  • affiliatewp-affiliate-qr-codes/tags/1.0.2/includes/class-affiliatewp-affiliate-qr-codes.php

    r2540749 r2572551  
    5050         * @var    string
    5151         */
    52         private $version = '1.0.1';
     52        private $version = '1.0.';
    5353
    5454        /**
  • affiliatewp-affiliate-qr-codes/tags/1.0.2/readme.txt

    r2546393 r2572551  
    33Tags: AffiliateWP
    44Requires at least: 5.0
    5 Tested up to: 5.7
     5Tested up to: 5.
    66Requires PHP: 5.6
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4949== Changelog ==
    5050
     51
     52
     53
    5154= 1.0.1 =
    5255* Improved: Switch QR code image format to PNG
  • affiliatewp-affiliate-qr-codes/trunk/affiliatewp-affiliate-qr-codes.php

    r2540749 r2572551  
    66 * Author: Sandhills Development, LLC
    77 * Author URI: https://sandhillsdev.com
    8  * Version: 1.0.1
     8 * Version: 1.0.
    99 * Text Domain: affiliatewp-affiliate-qr-codes
    1010 *
     
    102102        if ( class_exists( 'AffiliateWP_Affiliate_QR_Codes' ) ) {
    103103
    104             // Bootstrap to affwp_plugins_loaded.
    105             add_action( 'plugins_loaded', array( $this, 'bootstrap' ), 100 );
     104            $affwp_version = get_option( 'affwp_version' );
     105
     106            if ( version_compare( $affwp_version, '2.7', '<' ) ) {
     107                add_action( 'plugins_loaded', array( $this, 'bootstrap' ), 100 );
     108            } else {
     109                add_action( 'affwp_plugins_loaded', array( $this, 'bootstrap' ), 100 );
     110            }
    106111
    107112            // Register the activation hook.
  • affiliatewp-affiliate-qr-codes/trunk/includes/class-affiliatewp-affiliate-qr-codes.php

    r2540749 r2572551  
    5050         * @var    string
    5151         */
    52         private $version = '1.0.1';
     52        private $version = '1.0.';
    5353
    5454        /**
  • affiliatewp-affiliate-qr-codes/trunk/readme.txt

    r2546393 r2572551  
    33Tags: AffiliateWP
    44Requires at least: 5.0
    5 Tested up to: 5.7
     5Tested up to: 5.
    66Requires PHP: 5.6
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4949== Changelog ==
    5050
     51
     52
     53
    5154= 1.0.1 =
    5255* Improved: Switch QR code image format to PNG
Note: See TracChangeset for help on using the changeset viewer.