Plugin Directory

Changeset 3435973


Ignore:
Timestamp:
01/09/2026 02:15:44 PM (2 months ago)
Author:
smartcloud
Message:

Uploading version 2.0.7

Location:
gatey/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gatey/trunk/gatey.php

    r3435868 r3435973  
    77 * Tested up to:      6.9
    88 * Requires PHP:      8.1
    9  * Version:           2.0.6
     9 * Version:           2.0.7
    1010 * Author:            Smart Cloud Solutions Inc.
    1111 * Author URI:        https://smart-cloud-solutions.com
     
    1919namespace SmartCloud\WPSuite\Gatey;
    2020
    21 const VERSION = '2.0.6';
     21const VERSION = '2.0.7';
    2222
    2323if (!defined('ABSPATH')) {
  • gatey/trunk/hub-loader.php

    r3435868 r3435973  
    125125        $owner_exists = file_exists(WP_PLUGIN_DIR . '/' . $owner);
    126126        $owner_is_valid = in_array(WP_PLUGIN_DIR . '/' . $owner, wp_get_active_and_valid_plugins(), true);
    127         $owner_inactive = $owner_is_active && (!$owner_is_valid || !$owner_exists);
     127        $owner_inactive = !$owner_is_active || !$owner_is_valid || !$owner_exists;
    128128
    129129        $owner_version_is_smaller = version_compare($owner_version, GATEY_HUB_VERSION) === -1;
  • gatey/trunk/readme.txt

    r3435868 r3435973  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 2.0.6
     7Stable tag: 2.0.7
    88License: MIT
    99License URI: https://mit-license.org/
     
    184184== Changelog ==
    185185
     186= 2.0.7 =
     187* Fix: corrected `hub-loader.php` to ensure the shared WPSuite.io admin menu loads reliably.
     188
    186189= 2.0.6 =
    187190* Performance: corrected package entry points so the correct builds are loaded, significantly reducing shipped JS size.
     
    406409== Upgrade Notice ==
    407410
     411= 2.0.7 =
     412Fixes `hub-loader.php` to improve reliability of loading the shared WPSuite.io admin menu. Recommended update.
     413
    408414= 2.0.6 =
    409415Performance + stability update: smaller JS payload and more reliable loading across frontend, Gutenberg and Elementor. Recommended update.
Note: See TracChangeset for help on using the changeset viewer.