Skip to content

Commit

Permalink
New : Changelog version 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-eoxia committed Feb 5, 2021
1 parent bd32072 commit 1059199
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
15 changes: 13 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion wpshop.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
8 changes: 5 additions & 3 deletions wpshop.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
* Author URI: http://www.eoxia.com/
* License: GPLv3
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 1059199

Please sign in to comment.