Plugin Directory

Changeset 3329229


Ignore:
Timestamp:
07/16/2025 04:45:35 PM (7 months ago)
Author:
themepaste
Message:

Update to version 1.1.6 from GitHub

Location:
shipping-manager
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shipping-manager/tags/1.1.6/app/Classes/Install.php

    r3327388 r3329229  
    2424            'method-title'      => '',
    2525            'is-plugin-enable'  => 1,
    26             'is-plugin-taxable' => 'no',
    2726        ] );
    2827    }
  • shipping-manager/tags/1.1.6/app/Classes/Notice.php

    r3327388 r3329229  
    2626
    2727        // Already completed? Then skip notice
    28         if ( get_option( 'tpsm_is_setup_wizard', false ) ) {
     28        $setup_wizard_value = get_option( 'tpsm_is_setup_wizard', null );
     29        if ( $setup_wizard_value === '0' || $setup_wizard_value === '1' || $setup_wizard_value === 0 || $setup_wizard_value === 1 ) {
    2930            return;
    3031        }
  • shipping-manager/tags/1.1.6/readme.txt

    r3327411 r3329229  
    77WC tested up to: 9.8
    88Requires PHP: 7.0
    9 Stable tag: 1.1.5
     9Stable tag: 1.1.6
    1010License: GPLv3 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    192192== Changelog ==
    193193
     194= v1.1.6 - 2025.07.14 =
     195* [fix] Fixed notice issue.
     196
    194197= v1.1.4 - v1.1.5 - 2025.07.14 =
    195198* [new] Setup wizard included
  • shipping-manager/tags/1.1.6/shipping-manager.php

    r3327411 r3329229  
    44 * Plugin URI:        https://themepaste.com/product/wordpress-plugins/shipping-manager-for-woocommerce
    55 * Description:       Powerful WooCommerce shipping plugin with table rate, weight-based rates, shipping class support, and advanced shipping rules.
    6  * Version:           1.1.5
     6 * Version:           1.1.6
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.0
     
    4141
    4242       define( 'TPSM_PLUGIN_FILE', __FILE__ );
    43        define( 'TPSM_PLUGIN_VERSION', '1.1.5' );
     43       define( 'TPSM_PLUGIN_VERSION', '1.1.6' );
    4444       define( 'TPSM_PLUGIN_DIRNAME', dirname( TPSM_PLUGIN_FILE ) );
    4545       define( 'TPSM_PLUGIN_BASENAME', plugin_basename( TPSM_PLUGIN_FILE ) );
  • shipping-manager/trunk/app/Classes/Install.php

    r3327388 r3329229  
    2424            'method-title'      => '',
    2525            'is-plugin-enable'  => 1,
    26             'is-plugin-taxable' => 'no',
    2726        ] );
    2827    }
  • shipping-manager/trunk/app/Classes/Notice.php

    r3327388 r3329229  
    2626
    2727        // Already completed? Then skip notice
    28         if ( get_option( 'tpsm_is_setup_wizard', false ) ) {
     28        $setup_wizard_value = get_option( 'tpsm_is_setup_wizard', null );
     29        if ( $setup_wizard_value === '0' || $setup_wizard_value === '1' || $setup_wizard_value === 0 || $setup_wizard_value === 1 ) {
    2930            return;
    3031        }
  • shipping-manager/trunk/readme.txt

    r3327411 r3329229  
    77WC tested up to: 9.8
    88Requires PHP: 7.0
    9 Stable tag: 1.1.5
     9Stable tag: 1.1.6
    1010License: GPLv3 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    192192== Changelog ==
    193193
     194= v1.1.6 - 2025.07.14 =
     195* [fix] Fixed notice issue.
     196
    194197= v1.1.4 - v1.1.5 - 2025.07.14 =
    195198* [new] Setup wizard included
  • shipping-manager/trunk/shipping-manager.php

    r3327411 r3329229  
    44 * Plugin URI:        https://themepaste.com/product/wordpress-plugins/shipping-manager-for-woocommerce
    55 * Description:       Powerful WooCommerce shipping plugin with table rate, weight-based rates, shipping class support, and advanced shipping rules.
    6  * Version:           1.1.5
     6 * Version:           1.1.6
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.0
     
    4141
    4242       define( 'TPSM_PLUGIN_FILE', __FILE__ );
    43        define( 'TPSM_PLUGIN_VERSION', '1.1.5' );
     43       define( 'TPSM_PLUGIN_VERSION', '1.1.6' );
    4444       define( 'TPSM_PLUGIN_DIRNAME', dirname( TPSM_PLUGIN_FILE ) );
    4545       define( 'TPSM_PLUGIN_BASENAME', plugin_basename( TPSM_PLUGIN_FILE ) );
Note: See TracChangeset for help on using the changeset viewer.