Changeset 3044959
- Timestamp:
- 03/04/2024 11:35:03 AM (2 years ago)
- Location:
- woo-parcel-pro
- Files:
-
- 10 edited
- 1 copied
-
tags/1.7.2 (copied) (copied from woo-parcel-pro/trunk)
-
tags/1.7.2/admin/class-parcelpro-shipping.php (modified) (1 diff)
-
tags/1.7.2/changelog.md (modified) (1 diff)
-
tags/1.7.2/composer.json (modified) (1 diff)
-
tags/1.7.2/includes/class-parcelpro-api.php (modified) (1 diff)
-
tags/1.7.2/woocommerce-parcelpro.php (modified) (2 diffs)
-
trunk/admin/class-parcelpro-shipping.php (modified) (1 diff)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/includes/class-parcelpro-api.php (modified) (1 diff)
-
trunk/woocommerce-parcelpro.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-parcel-pro/tags/1.7.2/admin/class-parcelpro-shipping.php
r3030134 r3044959 237 237 ); 238 238 239 if ($delivery_expected ) {239 if ($delivery_expected instanceof DateTimeInterface) { 240 240 $formattedDeliveryDate = ' (' . $this->formatDeliveryDate($delivery_expected) . ')'; 241 241 } -
woo-parcel-pro/tags/1.7.2/changelog.md
r3032150 r3044959 1 1 # Changelog 2 ## 1.7.2 - 2024-03-04 3 * Fixed a bug that would incorrectly display a wrong expected datetime 4 2 5 ## 1.7.1 - 2024-02-06 3 6 * Change support for Wordpress up to 6.4.3 -
woo-parcel-pro/tags/1.7.2/composer.json
r3032150 r3044959 3 3 "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.", 4 4 "type": "wordpress-plugin", 5 "version": "1.7. 1",5 "version": "1.7.2", 6 6 "require": { 7 7 "php": ">=7.1", -
woo-parcel-pro/tags/1.7.2/includes/class-parcelpro-api.php
r3030134 r3044959 312 312 * @param $postcode string The postal code of the package destination. 313 313 * 314 * @return DateTimeImmutable|false 314 * @return DateTimeImmutable|false|string 315 315 */ 316 316 public function getDeliveryDate(string $carrier, \DateTimeInterface $dateTime, string $postcode) -
woo-parcel-pro/tags/1.7.2/woocommerce-parcelpro.php
r3032150 r3044959 17 17 * Plugin URI: https://www.parcelpro.nl/koppelingen/woocommerce/ 18 18 * 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 Parcel Pro. 19 * Version: 1.7. 119 * Version: 1.7.2 20 20 * Author: Parcel Pro 21 21 * Author URI: https://parcelpro.nl/ … … 31 31 32 32 define('PARCELPRO_NAME', 'WooCommerce Parcel Pro'); 33 define('PARCELPRO_VERSION', '1.7. 1');33 define('PARCELPRO_VERSION', '1.7.2'); 34 34 define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3'); 35 35 define('PARCELPRO_REQUIRED_WP_VERSION', '3.1'); -
woo-parcel-pro/trunk/admin/class-parcelpro-shipping.php
r3030134 r3044959 237 237 ); 238 238 239 if ($delivery_expected ) {239 if ($delivery_expected instanceof DateTimeInterface) { 240 240 $formattedDeliveryDate = ' (' . $this->formatDeliveryDate($delivery_expected) . ')'; 241 241 } -
woo-parcel-pro/trunk/changelog.md
r3032150 r3044959 1 1 # Changelog 2 ## 1.7.2 - 2024-03-04 3 * Fixed a bug that would incorrectly display a wrong expected datetime 4 2 5 ## 1.7.1 - 2024-02-06 3 6 * Change support for Wordpress up to 6.4.3 -
woo-parcel-pro/trunk/composer.json
r3032150 r3044959 3 3 "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.", 4 4 "type": "wordpress-plugin", 5 "version": "1.7. 1",5 "version": "1.7.2", 6 6 "require": { 7 7 "php": ">=7.1", -
woo-parcel-pro/trunk/includes/class-parcelpro-api.php
r3030134 r3044959 312 312 * @param $postcode string The postal code of the package destination. 313 313 * 314 * @return DateTimeImmutable|false 314 * @return DateTimeImmutable|false|string 315 315 */ 316 316 public function getDeliveryDate(string $carrier, \DateTimeInterface $dateTime, string $postcode) -
woo-parcel-pro/trunk/woocommerce-parcelpro.php
r3032150 r3044959 17 17 * Plugin URI: https://www.parcelpro.nl/koppelingen/woocommerce/ 18 18 * 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 Parcel Pro. 19 * Version: 1.7. 119 * Version: 1.7.2 20 20 * Author: Parcel Pro 21 21 * Author URI: https://parcelpro.nl/ … … 31 31 32 32 define('PARCELPRO_NAME', 'WooCommerce Parcel Pro'); 33 define('PARCELPRO_VERSION', '1.7. 1');33 define('PARCELPRO_VERSION', '1.7.2'); 34 34 define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3'); 35 35 define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset
for help on using the changeset viewer.