Plugin Directory

Changeset 3494857


Ignore:
Timestamp:
03/30/2026 06:01:30 PM (40 hours ago)
Author:
speedify
Message:

Release 1.0.2. Recommended update.

Location:
statixly
Files:
36 added
3 edited

Legend:

Unmodified
Added
Removed
  • statixly/trunk/readme.txt

    r3494639 r3494857  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9696== Changelog ==
    9797
     98= 1.0.2 =
     99* Fix: Uninstall flow now reliably loads required helper functions before cleanup.
     100* Improvement: Kept uninstall cleanup logic centralized by reusing existing helper APIs instead of duplicating cleanup behavior.
     101
    98102= 1.0.1 =
    99103* Renamed plugin to Statixly.
     
    122126== Upgrade Notice ==
    123127
    124 = 1.0.1 =
    125 Initial public release.
     128= 1.0.2 =
     129Recommended update. Improves plugin deletion reliability by fixing uninstall bootstrap loading.
  • statixly/trunk/statixly.php

    r3494639 r3494857  
    33 * Plugin Name: Statixly
    44 * Description: Generate a fast, secure, static HTML version of your WordPress website. Export to ZIP.
    5  * Version: 1.0.1
     5 * Version: 1.0.2
    66 * Requires at least: 6.2
    77 * Requires PHP: 7.4
  • statixly/trunk/uninstall.php

    r3494639 r3494857  
    1414}
    1515
     16if ( ! defined( 'STATIXLY_SLUG' ) ) {
     17    define( 'STATIXLY_SLUG', 'statixly' );
     18}
     19
     20require_once __DIR__ . '/includes/functions-api.php';
    1621require_once __DIR__ . '/includes/Uninstaller.php';
    1722
Note: See TracChangeset for help on using the changeset viewer.