Plugin Directory

Changeset 3198210


Ignore:
Timestamp:
11/27/2024 02:30:37 PM (16 months ago)
Author:
shelfplanner
Message:

2.5.2

  • Improved the update feature
  • Tested on latest version of wordpress
Location:
shelf-planner/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • shelf-planner/trunk/block.json

    r3192494 r3198210  
    33    "apiVersion": 3,
    44    "name": "extension/shelf-planner",
    5     "version": "2.5.1",
     5    "version": "2.5.2",
    66    "title": "Stock Management for WooCommerce",
    77    "category": "widgets",
  • shelf-planner/trunk/readme.txt

    r3192494 r3198210  
    22Contributors: shelfplanner
    33Requires at least: 6.0.0
    4 Tested up to: 6.6
     4Tested up to: 6.7.1
    55Requires PHP: 5.3
    6 Stable tag: 2.5.1
     6Stable tag: 2.5.2
    77Tags: Inventory Management,ABC Analysis,Demand Forecasting,Replenishment,Purchasing
    88License: GPLv2 or later
     
    9696== Changelog ==
    9797
     98= 2.5.2 =
     99- Improved the update feature
     100- Tested on last version of wordpress
     101
    98102= 2.5.1 =
    99 - Plugin update fix
     103- New plugin update feature
    100104
    101105= 2.5.0 =
  • shelf-planner/trunk/shelf-planner.php

    r3192494 r3198210  
    1010 * Description:         AI-driven Stock Management, Demand Forecasting, Replenishment and Order Management for WooCommerce, all in one powerful tool.
    1111 *
    12  * Version:             2.5.1
     12 * Version:             2.5.2
    1313 * Author:              Shelf Planner
    1414 * Author URI:          https://www.shelfplanner.com
     
    2626
    2727if (!defined('SPC_WP__VERSION')) {
    28     define('SPC_WP__VERSION', '2.5.1');
     28    define('SPC_WP__VERSION', '2.5.2');
    2929}
    3030
     
    108108function shelf_planner_update_hook($upgrader_object, $options) {
    109109    // 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'])) {
    111111        // Get the list of updated plugins
    112112        $updated_plugins = $options['plugins'];
Note: See TracChangeset for help on using the changeset viewer.