From 10591998432dd5c9f074dcadb4ecebdc8358c9fc Mon Sep 17 00:00:00 2001 From: Nicolas Date: Fri, 5 Feb 2021 18:51:43 +0100 Subject: [PATCH] New : Changelog version 2.3.3 --- readme.txt | 15 +++++++++++++-- wpshop.config.json | 2 +- wpshop.php | 8 +++++--- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/readme.txt b/readme.txt index d671725..a52fa06 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: Eoxia Tags: boutique, catalog, catalogue, commerce, e-commerce, ecommerce, m-commerce, mcommerce, produits, shop, shopping cart, wp shop, wordpress ecommerce, wordpress shop, WPShop, wp-shop, french payment gateway, Donate link: https://www.wpshop.fr/ Requires at least: 4.4 -Tested up to: 5.5.3 +Tested up to: 5.6.1 Requires PHP: 7.0 -Stable tag: 2.3.2 +Stable tag: 2.3.3 License: GPLv3 or later License URI: https://spdx.org/licenses/GPL-3.0-or-later.html @@ -65,6 +65,17 @@ Il n'est pas possible de migrer les données vers la version WPShop 2.X.X. == Changelog == += Version 2.3.3 = + +* Add - Change on Statut for Proposals, orders and invoices. +* Add - Change on payment method paypal/stripe -> credit card. +* Add - Invoice link on single page order. +* Add - Translate. +* Add - Edit Dolibarr product configuration on single page. + +* Fix - First name doesn't appear on Dolibarr tiers. +* Fix - Invoice module appear on WPshop without Dolibarr. + = Version 2.3.2 = * Add - Add stock to product synchronisation. diff --git a/wpshop.config.json b/wpshop.config.json index 5600120..74ca2d8 100644 --- a/wpshop.config.json +++ b/wpshop.config.json @@ -2,7 +2,7 @@ "name": "WPshop", "slug": "wpshop", "since": "2.0.0", - "version": "2.3.2", + "version": "2.3.3", "description": "L'application WPshop 2", "externals": [], "modules": [ diff --git a/wpshop.php b/wpshop.php index 59881f2..ce7e509 100644 --- a/wpshop.php +++ b/wpshop.php @@ -3,7 +3,7 @@ * Plugin Name: WPshop 2 * Plugin URI: https://wpshop.fr/ * Description: Simple, fast, efficient it will transform your WordPress into an internet sales site - * Version: 2.3.2 + * Version: 2.3.3 * Author: Eoxia * Author URI: http://www.eoxia.com/ * License: GPLv3 @@ -37,8 +37,10 @@ add_filter('site_transient_update_plugins', function ($value) { - if ( $value->checked[plugin_basename(__FILE__)] <= "1.6.4" ) { - unset( $value->response[plugin_basename(__FILE__)] ); + if (!empty($value->checked)) { + if ( $value->checked[plugin_basename(__FILE__)] <= "1.6.4" ) { + unset( $value->response[plugin_basename(__FILE__)] ); + } } return $value; }