Plugin Directory

Changeset 2226182


Ignore:
Timestamp:
01/12/2020 09:15:32 PM (6 years ago)
Author:
SmartSend
Message:

Tagging version 8.0.20

Location:
smart-send-logistics
Files:
14 deleted
4 edited
27 copied

Legend:

Unmodified
Added
Removed
  • smart-send-logistics/tags/8.0.20/includes/class-ss-shipping-wc-method.php

    r2142204 r2226182  
    7171                        'postnord_letteruntracked'         => __('PostNord: Untracked letter',
    7272                            'smart-send-logistics'),
     73                        'postnord_fullpallet'              => __('PostNord: Full size pallet',
     74                            'smart-send-logistics'),
     75                        'postnord_halfpallet'              => __('PostNord: Half size pallet',
     76                            'smart-send-logistics'),
     77                        'postnord_quarterpallet'           => __('PostNord: Quarter size pallet',
     78                            'smart-send-logistics'),
    7379                    ),
    7480                'GLS'               =>
     
    251257            $this->form_fields = array(
    252258                'api_token'                         => array(
     259                    // Note that this can be input for multiple sites using
     260                    // site1:apitoken1,site2:apitoken2,....
    253261                    'title'       => __('API Token', 'smart-send-logistics'),
    254262                    'type'        => 'text',
  • smart-send-logistics/tags/8.0.20/includes/frontend/class-ss-shipping-frontend.php

    r2061608 r2226182  
    128128        public function find_closest_agents_by_address($carrier, $country, $postal_code, $city, $street)
    129129        {
    130             SS_SHIPPING_WC()->log_msg('Called "findClosestAgentByAddress" with carrier = "' . $carrier . '", country = "' . $country . '", postcode = "' . $postal_code . '", city = "' . $city . '", street = "' . $street . '"');
     130            SS_SHIPPING_WC()->log_msg('Called "findClosestAgentByAddress" for website ' . SS_SHIPPING_WC()->get_website_url() . ' with carrier = "' . $carrier . '", country = "' . $country . '", postcode = "' . $postal_code . '", city = "' . $city . '", street = "' . $street . '"');
    131131
    132132            if (SS_SHIPPING_WC()->get_api_handle()->findClosestAgentByAddress($carrier, $country, $postal_code, $city, $street)) {
  • smart-send-logistics/tags/8.0.20/readme.txt

    r2194098 r2226182  
    99Requires at least: 3.0.1
    1010Tested up to: 5.3
    11 Stable tag: 8.0.19
     11Stable tag: 8.0.20
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    201201== Changelog ==
    202202
     203= 8.0.20 =
     204* Add PostNord pallet shipping methods. Full size pallet, Half size pallet and Quarter size pallet.
     205
    203206= 8.0.19 =
    204207* Bugfix: Order page failed when purchased products had been deleted
  • smart-send-logistics/tags/8.0.20/smart-send-logistics.php

    r2194098 r2226182  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.19
     9 * Version: 8.0.20
    1010 * WC requires at least: 2.6.0
    1111 * WC tested up to: 3.8
     
    3535    {
    3636
    37         private $version = "8.0.19";
     37        private $version = "8.0.20";
    3838
    3939        /**
  • smart-send-logistics/trunk/includes/class-ss-shipping-wc-method.php

    r2142204 r2226182  
    7171                        'postnord_letteruntracked'         => __('PostNord: Untracked letter',
    7272                            'smart-send-logistics'),
     73                        'postnord_fullpallet'              => __('PostNord: Full size pallet',
     74                            'smart-send-logistics'),
     75                        'postnord_halfpallet'              => __('PostNord: Half size pallet',
     76                            'smart-send-logistics'),
     77                        'postnord_quarterpallet'           => __('PostNord: Quarter size pallet',
     78                            'smart-send-logistics'),
    7379                    ),
    7480                'GLS'               =>
     
    251257            $this->form_fields = array(
    252258                'api_token'                         => array(
     259                    // Note that this can be input for multiple sites using
     260                    // site1:apitoken1,site2:apitoken2,....
    253261                    'title'       => __('API Token', 'smart-send-logistics'),
    254262                    'type'        => 'text',
  • smart-send-logistics/trunk/includes/frontend/class-ss-shipping-frontend.php

    r2061608 r2226182  
    128128        public function find_closest_agents_by_address($carrier, $country, $postal_code, $city, $street)
    129129        {
    130             SS_SHIPPING_WC()->log_msg('Called "findClosestAgentByAddress" with carrier = "' . $carrier . '", country = "' . $country . '", postcode = "' . $postal_code . '", city = "' . $city . '", street = "' . $street . '"');
     130            SS_SHIPPING_WC()->log_msg('Called "findClosestAgentByAddress" for website ' . SS_SHIPPING_WC()->get_website_url() . ' with carrier = "' . $carrier . '", country = "' . $country . '", postcode = "' . $postal_code . '", city = "' . $city . '", street = "' . $street . '"');
    131131
    132132            if (SS_SHIPPING_WC()->get_api_handle()->findClosestAgentByAddress($carrier, $country, $postal_code, $city, $street)) {
  • smart-send-logistics/trunk/readme.txt

    r2194098 r2226182  
    99Requires at least: 3.0.1
    1010Tested up to: 5.3
    11 Stable tag: 8.0.19
     11Stable tag: 8.0.20
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    201201== Changelog ==
    202202
     203= 8.0.20 =
     204* Add PostNord pallet shipping methods. Full size pallet, Half size pallet and Quarter size pallet.
     205
    203206= 8.0.19 =
    204207* Bugfix: Order page failed when purchased products had been deleted
  • smart-send-logistics/trunk/smart-send-logistics.php

    r2194098 r2226182  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.19
     9 * Version: 8.0.20
    1010 * WC requires at least: 2.6.0
    1111 * WC tested up to: 3.8
     
    3535    {
    3636
    37         private $version = "8.0.19";
     37        private $version = "8.0.20";
    3838
    3939        /**
Note: See TracChangeset for help on using the changeset viewer.