Plugin Directory

Changeset 2980361


Ignore:
Timestamp:
10/17/2023 10:25:37 PM (2 years ago)
Author:
antidot-dev
Message:

Release 3.0.1

Location:
bpost-shipping/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bpost-shipping/trunk/bpost-shipping.php

    r2977804 r2980361  
    66 * Author: bpost
    77 * Author URI: https://www.bpost.be/
    8  * Version: 3.0.0
     8 * Version: 3.0.1
    99 * WC requires at least: 3.0
    1010 * WC tested up to: 7.9
     
    1515define( 'BPOST_PLUGIN_DIR', __DIR__ );
    1616define( 'BPOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    17 define( 'BPOST_PLUGIN_VERSION', '3.0.0' );
     17define( 'BPOST_PLUGIN_VERSION', '3.0.1' );
    1818
    1919/**
  • bpost-shipping/trunk/classes/class-wc-bpost-shipping-hooks.php

    r2977804 r2980361  
    447447     */
    448448    private function is_bpost_shipping_from_session() {
     449        if (empty(WC()->cart->get_shipping_packages()['contents'])) {
     450            // all cart products are virtual (or the cart is empty...)
     451            return false;
     452        }
     453
    449454        $chosen_shipping_methods = WC()->session->get( 'chosen_shipping_methods' );
    450455
  • bpost-shipping/trunk/composer.json

    r2977804 r2980361  
    33  "description": "WooCommerce plugin for bpost shipping",
    44  "type": "wordpress-plugin",
    5   "version": "3.0.0",
     5  "version": "3.0.1",
    66
    77  "require": {
  • bpost-shipping/trunk/languages/bpost_shipping.pot

    r2977804 r2980361  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: bpost shipping 3.0.0\n"
     5"Project-Id-Version: bpost shipping 3.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/package\n"
    7 "POT-Creation-Date: 2023-10-11 18:43:37+00:00\n"
     7"POT-Creation-Date: 2023-10-17 22:25:00+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    107107msgstr ""
    108108
    109 #: classes/class-wc-bpost-shipping-hooks.php:481
     109#: classes/class-wc-bpost-shipping-hooks.php:486
    110110msgid "bpost labels"
    111111msgstr ""
    112112
    113 #: classes/class-wc-bpost-shipping-hooks.php:649
     113#: classes/class-wc-bpost-shipping-hooks.php:654
    114114msgid "You have to specify a delivery method"
    115115msgstr ""
    116116
    117 #: classes/class-wc-bpost-shipping-hooks.php:651
     117#: classes/class-wc-bpost-shipping-hooks.php:656
    118118msgid "Your bpost delivery method"
    119119msgstr ""
    120120
    121 #: classes/class-wc-bpost-shipping-hooks.php:655
     121#: classes/class-wc-bpost-shipping-hooks.php:660
    122122msgid "bpost_method_Regular"
    123123msgstr ""
    124124
    125 #: classes/class-wc-bpost-shipping-hooks.php:656
     125#: classes/class-wc-bpost-shipping-hooks.php:661
    126126msgid "bpost_method_Pugo"
    127127msgstr ""
    128128
    129 #: classes/class-wc-bpost-shipping-hooks.php:657
     129#: classes/class-wc-bpost-shipping-hooks.php:662
    130130msgid "bpost_method_Parcels depot"
    131131msgstr ""
    132132
    133 #: classes/class-wc-bpost-shipping-hooks.php:658
     133#: classes/class-wc-bpost-shipping-hooks.php:663
    134134msgid "bpost_method_bpack BUSINESS"
    135135msgstr ""
    136136
    137 #: classes/class-wc-bpost-shipping-hooks.php:659
     137#: classes/class-wc-bpost-shipping-hooks.php:664
    138138msgid "bpost_method_Pugo international"
    139139msgstr ""
    140140
    141 #: classes/class-wc-bpost-shipping-hooks.php:668
     141#: classes/class-wc-bpost-shipping-hooks.php:673
    142142msgid "Change the delivery method"
    143143msgstr ""
    144144
    145 #: classes/class-wc-bpost-shipping-hooks.php:693
     145#: classes/class-wc-bpost-shipping-hooks.php:698
    146146msgid "Please, specify a bpost delivery method!"
    147147msgstr ""
     
    197197msgstr ""
    198198
    199 #. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.0.0)  #-#-#-#-#
     199#. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.0.1)  #-#-#-#-#
    200200#. Author of the plugin/theme
    201201#: classes/class-wc-bpost-shipping-method.php:264
  • bpost-shipping/trunk/readme.txt

    r2977804 r2980361  
    88Tested up to: 6.2
    99Requires PHP: 7.4
    10 Stable tag: 3.0.0
     10Stable tag: 3.0.1
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1201205. Configure your bpost shipping settings under the Woocommerce shipping > bpost shipping tab
    121121== Changelog ==
     122
     123#### 3.0.1
     124
     125*Release date: 2023-10-17*
     126
     127* Add virtual products compatibility
    122128
    123129#### 3.0.0
Note: See TracChangeset for help on using the changeset viewer.