Plugin Directory

Changeset 3077398


Ignore:
Timestamp:
04/26/2024 06:56:47 AM (2 years ago)
Author:
parcelpro
Message:

Update to version 1.8.2 from GitHub

Location:
integration-shops-united-woocommerce
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • integration-shops-united-woocommerce/tags/1.8.2/admin/class-parcelpro-admin.php

    r3055205 r3077398  
    242242            $allowed_export = $this->settings['auto_export'];
    243243            $method = $this->settings['availability'];
    244             $countries = ($method == 'specific') ? $this->settings['countries'] : null;
     244            $countries = ($method == 'specific') ? ($this->settings['countries'] ?? []) : [];
    245245            $country = wc_get_order($order_id)->get_shipping_country();
    246246            $order_status = wc_get_order($order_id)->get_status();
  • integration-shops-united-woocommerce/tags/1.8.2/changelog.md

    r3055339 r3077398  
    11# Changelog
     2
     3## 1.8.2 - 2024-04-23
     4* Fix in_array() error for countries
    25
    36## 1.8.1 - 2024-03-20
  • integration-shops-united-woocommerce/tags/1.8.2/composer.json

    r3055339 r3077398  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.8.1",
     5  "version": "1.8.2",
    66  "require": {
    77    "php": ">=7.1",
  • integration-shops-united-woocommerce/tags/1.8.2/woocommerce-shopsunited.php

    r3055339 r3077398  
    1717 * Plugin URI:      https://shops-united.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Shops United.
    19  * Version:         1.8.1
     19 * Version:         1.8.2
    2020 * Author:          Shops United
    2121 * Author URI:      https://shops-united.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Shops United');
    33 define('PARCELPRO_VERSION', '1.8.1');
     33define('PARCELPRO_VERSION', '1.8.2');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
  • integration-shops-united-woocommerce/trunk/admin/class-parcelpro-admin.php

    r3055205 r3077398  
    242242            $allowed_export = $this->settings['auto_export'];
    243243            $method = $this->settings['availability'];
    244             $countries = ($method == 'specific') ? $this->settings['countries'] : null;
     244            $countries = ($method == 'specific') ? ($this->settings['countries'] ?? []) : [];
    245245            $country = wc_get_order($order_id)->get_shipping_country();
    246246            $order_status = wc_get_order($order_id)->get_status();
  • integration-shops-united-woocommerce/trunk/changelog.md

    r3055339 r3077398  
    11# Changelog
     2
     3## 1.8.2 - 2024-04-23
     4* Fix in_array() error for countries
    25
    36## 1.8.1 - 2024-03-20
  • integration-shops-united-woocommerce/trunk/composer.json

    r3055339 r3077398  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.8.1",
     5  "version": "1.8.2",
    66  "require": {
    77    "php": ">=7.1",
  • integration-shops-united-woocommerce/trunk/woocommerce-shopsunited.php

    r3055339 r3077398  
    1717 * Plugin URI:      https://shops-united.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Shops United.
    19  * Version:         1.8.1
     19 * Version:         1.8.2
    2020 * Author:          Shops United
    2121 * Author URI:      https://shops-united.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Shops United');
    33 define('PARCELPRO_VERSION', '1.8.1');
     33define('PARCELPRO_VERSION', '1.8.2');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset for help on using the changeset viewer.