Changeset 3198210
- Timestamp:
- 11/27/2024 02:30:37 PM (16 months ago)
- Location:
- shelf-planner/trunk
- Files:
-
- 3 edited
-
block.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shelf-planner.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shelf-planner/trunk/block.json
r3192494 r3198210 3 3 "apiVersion": 3, 4 4 "name": "extension/shelf-planner", 5 "version": "2.5. 1",5 "version": "2.5.2", 6 6 "title": "Stock Management for WooCommerce", 7 7 "category": "widgets", -
shelf-planner/trunk/readme.txt
r3192494 r3198210 2 2 Contributors: shelfplanner 3 3 Requires at least: 6.0.0 4 Tested up to: 6. 64 Tested up to: 6.7.1 5 5 Requires PHP: 5.3 6 Stable tag: 2.5. 16 Stable tag: 2.5.2 7 7 Tags: Inventory Management,ABC Analysis,Demand Forecasting,Replenishment,Purchasing 8 8 License: GPLv2 or later … … 96 96 == Changelog == 97 97 98 = 2.5.2 = 99 - Improved the update feature 100 - Tested on last version of wordpress 101 98 102 = 2.5.1 = 99 - Plugin update fix103 - New plugin update feature 100 104 101 105 = 2.5.0 = -
shelf-planner/trunk/shelf-planner.php
r3192494 r3198210 10 10 * Description: AI-driven Stock Management, Demand Forecasting, Replenishment and Order Management for WooCommerce, all in one powerful tool. 11 11 * 12 * Version: 2.5. 112 * Version: 2.5.2 13 13 * Author: Shelf Planner 14 14 * Author URI: https://www.shelfplanner.com … … 26 26 27 27 if (!defined('SPC_WP__VERSION')) { 28 define('SPC_WP__VERSION', '2.5. 1');28 define('SPC_WP__VERSION', '2.5.2'); 29 29 } 30 30 … … 108 108 function shelf_planner_update_hook($upgrader_object, $options) { 109 109 // Check if the plugin was updated 110 if ($options['action'] == 'update' && $options['type'] == 'plugin' ) {110 if ($options['action'] == 'update' && $options['type'] == 'plugin' && isset($options['plugins']) && is_array($options['plugins'])) { 111 111 // Get the list of updated plugins 112 112 $updated_plugins = $options['plugins'];
Note: See TracChangeset
for help on using the changeset viewer.