Plugin Directory

Changeset 3400888


Ignore:
Timestamp:
11/22/2025 11:21:51 AM (4 months ago)
Author:
PierreLannoy
Message:

OPcache Manager 3.3.0 released from GitHub

Location:
opcache-manager
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • opcache-manager/tags/3.3.0/CHANGELOG.md

    r3272124 r3400888  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **OPcache Manager** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     5
     6## [3.3.0] - 2025-11-22
     7
     8### Added
     9- Compatibility with WordPress 6.9.
    510
    611## [3.2.0] - 2025-04-14
  • opcache-manager/tags/3.3.0/includes/plugin/class-updater.php

    r3272124 r3400888  
    205205        }
    206206        $md                           = new Markdown();
    207         $res                          = new \stdClass();
     207        if ( ! is_object( $res ) ) {
     208            $res = new \stdClass();
     209        }
    208210        $res->name                    = $this->name;
    209211        $res->homepage                = 'https://perfops.one/' . $this->slug;
     
    220222        $res->download_link           = $infos->download_url;
    221223        $res->trunk                   = $infos->download_url;
    222         $res->sections                = [
    223             'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>',
    224         ];
    225         $res->banners                 = [
    226             "low"  => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg',
    227             "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'
    228         ];
     224        if ( isset( $res->sections['changelog'] ) ) {
     225            $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>';
     226        } else {
     227            $res->sections = [
     228                'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>',
     229            ];
     230        }
     231        if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) {
     232            $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg';
     233            $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg';
     234        } else {
     235            $res->banners                 = [
     236                'low'  => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg',
     237                'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'
     238            ];
     239        }
    229240        return $res;
    230241    }
  • opcache-manager/tags/3.3.0/init.php

    r3272124 r3400888  
    1313define( 'OPCM_PRODUCT_ABBREVIATION', 'opcm' );
    1414define( 'OPCM_SLUG', 'opcache-manager' );
    15 define( 'OPCM_VERSION', '3.2.0' );
     15define( 'OPCM_VERSION', '3.3.0' );
    1616define( 'OPCM_CODENAME', '"-"' );
    1717
  • opcache-manager/tags/3.3.0/opcache-manager.php

    r3272124 r3400888  
    1111 * Plugin URI:        https://perfops.one/opcache-manager
    1212 * Description:       OPcache statistics and management right in the WordPress admin dashboard.
    13  * Version:           3.2.0
     13 * Version:           3.3.0
    1414 * Requires at least: 6.2
    1515 * Requires PHP:      8.1
  • opcache-manager/tags/3.3.0/readme.txt

    r3272124 r3400888  
    44Requires at least: 6.2
    55Requires PHP: 8.1
    6 Tested up to: 6.8
    7 Stable tag: 3.2.0
     6Tested up to: 6.9
     7Stable tag: 3.3.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • opcache-manager/trunk/CHANGELOG.md

    r3272124 r3400888  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **OPcache Manager** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     5
     6## [3.3.0] - 2025-11-22
     7
     8### Added
     9- Compatibility with WordPress 6.9.
    510
    611## [3.2.0] - 2025-04-14
  • opcache-manager/trunk/includes/plugin/class-updater.php

    r3272124 r3400888  
    205205        }
    206206        $md                           = new Markdown();
    207         $res                          = new \stdClass();
     207        if ( ! is_object( $res ) ) {
     208            $res = new \stdClass();
     209        }
    208210        $res->name                    = $this->name;
    209211        $res->homepage                = 'https://perfops.one/' . $this->slug;
     
    220222        $res->download_link           = $infos->download_url;
    221223        $res->trunk                   = $infos->download_url;
    222         $res->sections                = [
    223             'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>',
    224         ];
    225         $res->banners                 = [
    226             "low"  => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg',
    227             "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'
    228         ];
     224        if ( isset( $res->sections['changelog'] ) ) {
     225            $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>';
     226        } else {
     227            $res->sections = [
     228                'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>',
     229            ];
     230        }
     231        if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) {
     232            $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg';
     233            $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg';
     234        } else {
     235            $res->banners                 = [
     236                'low'  => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg',
     237                'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'
     238            ];
     239        }
    229240        return $res;
    230241    }
  • opcache-manager/trunk/init.php

    r3272124 r3400888  
    1313define( 'OPCM_PRODUCT_ABBREVIATION', 'opcm' );
    1414define( 'OPCM_SLUG', 'opcache-manager' );
    15 define( 'OPCM_VERSION', '3.2.0' );
     15define( 'OPCM_VERSION', '3.3.0' );
    1616define( 'OPCM_CODENAME', '"-"' );
    1717
  • opcache-manager/trunk/opcache-manager.php

    r3272124 r3400888  
    1111 * Plugin URI:        https://perfops.one/opcache-manager
    1212 * Description:       OPcache statistics and management right in the WordPress admin dashboard.
    13  * Version:           3.2.0
     13 * Version:           3.3.0
    1414 * Requires at least: 6.2
    1515 * Requires PHP:      8.1
  • opcache-manager/trunk/readme.txt

    r3272124 r3400888  
    44Requires at least: 6.2
    55Requires PHP: 8.1
    6 Tested up to: 6.8
    7 Stable tag: 3.2.0
     6Tested up to: 6.9
     7Stable tag: 3.3.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.