Plugin Directory

Changeset 3496563


Ignore:
Timestamp:
04/01/2026 12:50:13 PM (24 hours ago)
Author:
rstake
Message:

Update to version 4.10.5

Location:
sdaweb-social-galleri-feed/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sdaweb-social-galleri-feed/trunk/blocks/gallery/block.json

    r3496530 r3496563  
    33    "apiVersion": 3,
    44    "name": "sdawsoga/gallery",
    5     "version": "4.10.4",
     5    "version": "4.10.5",
    66    "title": "Social Galleri Feed",
    77    "category": "embed",
  • sdaweb-social-galleri-feed/trunk/includes/class-api-handler.php

    r3496530 r3496563  
    489489        delete_option('sdawsoga_feed_stale_backup');
    490490        delete_option(self::IG_ACCOUNT_KEY);
    491         $ts = wp_next_scheduled(self::CRON_HOOK);
    492         if ($ts) wp_unschedule_event($ts, self::CRON_HOOK);
     491        wp_clear_scheduled_hook(self::CRON_HOOK);
    493492    }
    494493   
  • sdaweb-social-galleri-feed/trunk/readme.txt

    r3496530 r3496563  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 4.10.4
     7Stable tag: 4.10.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    125125
    126126== Changelog ==
     127
     128= 4.10.5 =
     129* Fix: Consistent cron cleanup — uninstall.php and clear_all() now use wp_clear_scheduled_hook() matching deactivation behavior.
    127130
    128131= 4.10.4 =
  • sdaweb-social-galleri-feed/trunk/sdaweb-social-galleri-feed.php

    r3496530 r3496563  
    33 * Plugin Name: SDAweb Social Galleri Feed
    44 * Description: Display your Instagram feed as a responsive gallery with lightbox, instant loading, and full admin control.
    5  * Version: 4.10.4
     5 * Version: 4.10.5
    66 * Requires at least: 5.8
    77 * Requires PHP: 7.4
     
    2121
    2222// Define plugin constants (guarded against conflicts)
    23 if (!defined('SDAWSOGA_VERSION'))              define('SDAWSOGA_VERSION', '4.10.4');
     23if (!defined('SDAWSOGA_VERSION'))              define('SDAWSOGA_VERSION', '4.10.5');
    2424if (!defined('SDAWSOGA_PLUGIN_FILE'))          define('SDAWSOGA_PLUGIN_FILE', __FILE__);
    2525if (!defined('SDAWSOGA_PLUGIN_DIR'))           define('SDAWSOGA_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • sdaweb-social-galleri-feed/trunk/uninstall.php

    r3483261 r3496563  
    191191);
    192192
    193 // Unschedule cron (v4.3.0)
    194 $sdawsoga_cron_timestamp = wp_next_scheduled('sdawsoga_cron_refresh_feed');
    195 if ($sdawsoga_cron_timestamp) {
    196     wp_unschedule_event($sdawsoga_cron_timestamp, 'sdawsoga_cron_refresh_feed');
    197 }
     193// Unschedule all instances of the cron hook
     194wp_clear_scheduled_hook('sdawsoga_cron_refresh_feed');
Note: See TracChangeset for help on using the changeset viewer.