Plugin Directory

Changeset 2686333


Ignore:
Timestamp:
03/01/2022 06:32:21 AM (4 years ago)
Author:
doshii
Message:

Submitting changes for release 2.4.5

Location:
doshii/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • doshii/trunk/README.txt

    r2679498 r2686333  
    55Requires at least: 4.7
    66Tested up to: 5.8.0
    7 Stable tag: 2.4.4
     7Stable tag: 2.4.5
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    6060== Changelog ==
    6161
     62= 2.4.5 =
     63
     64Updated item bundles to ensure any included items are passed through as $0
     65
    6266= 2.4.4 =
    6367
  • doshii/trunk/doshii_function.php

    r2679498 r2686333  
    77Author URI: https://www.doshii.io
    88Contributors:
    9 Version: 2.4.4
     9Version: 2.4.5
    1010*/
    1111
  • doshii/trunk/include/woo-doshii-initialise.php

    r2679498 r2686333  
    4040       'x-doshii-location-id' => $locationId.'',
    4141       'content-Type' => 'application/json',
    42        'x-doshii-writeout' => 'WooCommerce 2.4.4',
     42       'x-doshii-writeout' => 'WooCommerce 2.4.5',
    4343    );
    4444
  • doshii/trunk/include/woo-doshii-product-sync.php

    r2679498 r2686333  
    4141            'x-doshii-location-id' => $locationId.'',
    4242            'content-Type' => 'application/json',
    43             'x-doshii-writeout' => 'WooCommerce 2.4.4',
     43            'x-doshii-writeout' => 'WooCommerce 2.4.5',
    4444        )
    4545    ));
  • doshii/trunk/include/woo-order-api.php

    r2679498 r2686333  
    470470            $doshiiBundleItem = $parentBundleItems[$parentBundle];
    471471            if (!is_null($doshiiBundleItem)) {
     472                $doshiiItem->unitPrice = 0; // set all included items to $0
    472473                array_push($doshiiBundleItem->includedItems, $doshiiItem);
    473474            }
     
    548549                'accept' => 'application/json',
    549550                'Accept-encoding' => 'gzip',
    550                 'x-doshii-writeout' => 'WooCommerce 2.4.4',
     551                'x-doshii-writeout' => 'WooCommerce 2.4.5',
    551552            ),
    552553            'body' => json_encode($doshiiOrderPayload)
  • doshii/trunk/include/woo-order-status.php

    r2679498 r2686333  
    3939                'x-doshii-location-id' => $doshii_options['location_id'].'',
    4040                'content-Type' => 'application/json',
    41                 'x-doshii-writeout' => 'WooCommerce 2.4.4',
     41                'x-doshii-writeout' => 'WooCommerce 2.4.5',
    4242            )
    4343        ));
Note: See TracChangeset for help on using the changeset viewer.