Plugin Directory

Changeset 3153060


Ignore:
Timestamp:
09/17/2024 07:32:45 AM (17 months ago)
Author:
fastcourieraustralia
Message:

4.0.5

Location:
fast-courier-shipping-freight
Files:
349 added
8 edited

Legend:

Unmodified
Added
Removed
  • fast-courier-shipping-freight/trunk/configs.php

    r3145773 r3153060  
    1111$GLOBALS['api'] = "https://fctest-api.fastcourier.com.au/api/wp/";
    1212$GLOBALS['test_key'] = $options_prefix . 'test_mode';
    13 $GLOBALS['version'] = '4.0.4';
     13$GLOBALS['version'] = '4.0.5';
    1414
    1515$GLOBALS['supported_woo_commerce_version'] = '8.2.2';
  • fast-courier-shipping-freight/trunk/functions.php

    r3145773 r3153060  
    11851185                            headers: {
    11861186                                'Authorization': `Bearer <?php echo $token ?>`,
    1187                                 'version': '4.0.4',
     1187                                'version': '4.0.5',
    11881188                            },
    11891189                            data: {
  • fast-courier-shipping-freight/trunk/readme.txt

    r3145773 r3153060  
    44Requires at least: 5.0
    55Tested up to: 6.5
    6 Stable tag: 4.0.4
     6Stable tag: 4.0.5
    77Requires PHP: 7.4
    88License: GPLv2
     
    234234= 4.0.4 =
    235235* Performance & Bug fixes
     236
     237= 4.0.5 =
     238* Fixed the minimum weight required for courier services
     239* Performance & Bug fixes
  • fast-courier-shipping-freight/trunk/settings.php

    r3145773 r3153060  
    1717 * Plugin URI:        https://fastcourier.com.au
    1818 * Description:       Fast Courier is an Australian Courier & Freight shipping platform. Connect your WooCommerce Store with a network of Courier & Freight Providers. See more about Fast Courier Services here: <a href="https://fastcourier.com.au" target="_blank">https://fastcourier.com.au</a>
    19  * Version:           4.0.4
     19 * Version:           4.0.5
    2020 * Author:            Fast Courier Australia
    2121 * License:           GPLv2
  • fast-courier-shipping-freight/trunk/views/class-update-quotes.php

    r3144030 r3153060  
    224224                            $width = ($width <= 0) ? 1 : $width;
    225225                            $length = ($length <= 0) ? 1 : $length;
    226                             $weight = ($weight <= 0.01) ? 0.01 : $weight;
     226                            $weight = ($weight <= 0.1) ? 0.1 : $weight;
    227227
    228228                            $pack = ['name' => $product->get_name(), 'height' => $height, 'width' => $width, 'length' => $length, 'weight' => $weight, 'type' => $pack_type, 'quantity' => $ordered_qty];
  • fast-courier-shipping-freight/trunk/views/views/location-edit.php

    r3145773 r3153060  
    193193                headers: {
    194194                    'Authorization': `Bearer <?php echo $token ?>`,
    195                     'version': '4.0.4',
     195                    'version': '4.0.5',
    196196                },
    197197                data: (params) => {
  • fast-courier-shipping-freight/trunk/views/views/merchant.php

    r3145773 r3153060  
    367367            headers: {
    368368                'Authorization': `Bearer <?php echo $token ?>`,
    369                 'version': '4.0.4',
     369                'version': '4.0.5',
    370370            },
    371371            data: {
  • fast-courier-shipping-freight/trunk/views/views/processed-orders.php

    r3127010 r3153060  
    416416    }
    417417
     418    function toggleStatusModal() {
     419        $('.modal').toggleClass('show d-flex align-items-center justify-content-center');
     420    }
     421
    418422    function processOrders() {
    419423        if (!verifyDate()) {
     
    432436        const orders = $("[name='selectedOrders']").serialize();
    433437        const params = `action=post_process_orders&${orders}&orders[]=${selectedOrderId}&selectedHashId=${selectedHashId}&is_reprocessing=true`;
    434         console.log(params);
    435438
    436439        $.post(ajaxurl, params, function(result) {
    437440
    438             console.log(result);
    439441            if (result.status == 200) {
    440442                $('form').trigger('reset');
Note: See TracChangeset for help on using the changeset viewer.