Plugin Directory

Changeset 2991689


Ignore:
Timestamp:
11/08/2023 09:02:38 AM (2 years ago)
Author:
antidot-dev
Message:

Release 3.0.3

Location:
bpost-shipping/trunk
Files:
11 edited

Legend:

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

    r2981896 r2991689  
    66 * Author: bpost
    77 * Author URI: https://www.bpost.be/
    8  * Version: 3.0.2
     8 * Version: 3.0.3
    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.2' );
     17define( 'BPOST_PLUGIN_VERSION', '3.0.3' );
    1818
    1919/**
  • bpost-shipping/trunk/classes/class-wc-bpost-shipping-hooks.php

    r2981896 r2991689  
    227227            $as_from_text = ': ' . bpost__( 'Free shipping available' );
    228228        }
    229         $post_data = wp_parse_args( $_POST['post_data'] );
    230         if ( $post_data['bpost_shm_already_called'] === 'yes' ) {
    231             $as_from_text = '';
     229        if ( array_key_exists( 'post_data', $_POST ) ) {
     230            $post_data = wp_parse_args( $_POST['post_data'] );
     231            if ( $post_data['bpost_shm_already_called'] === 'yes' ) {
     232                $as_from_text = '';
     233            }
    232234        }
    233235
  • bpost-shipping/trunk/composer.json

    r2981896 r2991689  
    33  "description": "WooCommerce plugin for bpost shipping",
    44  "type": "wordpress-plugin",
    5   "version": "3.0.2",
     5  "version": "3.0.3",
    66
    77  "require": {
  • bpost-shipping/trunk/languages/bpost_shipping.pot

    r2981896 r2991689  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: bpost shipping 3.0.2\n"
     5"Project-Id-Version: bpost shipping 3.0.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/package\n"
    7 "POT-Creation-Date: 2023-10-20 21:38:08+00:00\n"
     7"POT-Creation-Date: 2023-11-08 09:02:10+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    103103msgstr ""
    104104
    105 #: classes/class-wc-bpost-shipping-hooks.php:425
     105#: classes/class-wc-bpost-shipping-hooks.php:427
    106106msgid "status: "
    107107msgstr ""
    108108
    109 #: classes/class-wc-bpost-shipping-hooks.php:523
     109#: classes/class-wc-bpost-shipping-hooks.php:525
    110110msgid "bpost labels"
    111111msgstr ""
    112112
    113 #: classes/class-wc-bpost-shipping-hooks.php:691
     113#: classes/class-wc-bpost-shipping-hooks.php:693
    114114msgid "You have to specify a delivery method"
    115115msgstr ""
    116116
    117 #: classes/class-wc-bpost-shipping-hooks.php:693
     117#: classes/class-wc-bpost-shipping-hooks.php:695
    118118msgid "Your bpost delivery method"
    119119msgstr ""
    120120
    121 #: classes/class-wc-bpost-shipping-hooks.php:698
     121#: classes/class-wc-bpost-shipping-hooks.php:700
    122122msgid "bpost_method_Regular"
    123123msgstr ""
    124124
    125 #: classes/class-wc-bpost-shipping-hooks.php:699
     125#: classes/class-wc-bpost-shipping-hooks.php:701
    126126msgid "bpost_method_Pugo"
    127127msgstr ""
    128128
    129 #: classes/class-wc-bpost-shipping-hooks.php:700
     129#: classes/class-wc-bpost-shipping-hooks.php:702
    130130msgid "bpost_method_Parcels depot"
    131131msgstr ""
    132132
    133 #: classes/class-wc-bpost-shipping-hooks.php:701
     133#: classes/class-wc-bpost-shipping-hooks.php:703
    134134msgid "bpost_method_bpack BUSINESS"
    135135msgstr ""
    136136
    137 #: classes/class-wc-bpost-shipping-hooks.php:702
     137#: classes/class-wc-bpost-shipping-hooks.php:704
    138138msgid "bpost_method_Pugo international"
    139139msgstr ""
    140140
    141 #: classes/class-wc-bpost-shipping-hooks.php:711
     141#: classes/class-wc-bpost-shipping-hooks.php:713
    142142msgid "Change the delivery method"
    143143msgstr ""
    144144
    145 #: classes/class-wc-bpost-shipping-hooks.php:737
     145#: classes/class-wc-bpost-shipping-hooks.php:739
    146146msgid "Please, specify a bpost delivery method!"
    147147msgstr ""
     
    197197msgstr ""
    198198
    199 #. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.0.2)  #-#-#-#-#
     199#. #-#-#-#-#  bpost_shipping.pot (bpost shipping 3.0.3)  #-#-#-#-#
    200200#. Author of the plugin/theme
    201201#: classes/class-wc-bpost-shipping-method.php:264
  • bpost-shipping/trunk/readme.txt

    r2981896 r2991689  
    88Tested up to: 6.3
    99Requires PHP: 7.4
    10 Stable tag: 3.0.2
     10Stable tag: 3.0.3
    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.3
     124
     125*Release date: 2023-11-08*
     126
     127* Update bpost button translation
     128* Avoid a PHP warning in some cases
    122129
    123130#### 3.0.2
Note: See TracChangeset for help on using the changeset viewer.