close

Plugin Directory

Changeset 3400890


Ignore:
Timestamp:
11/22/2025 11:26:12 AM (6 months ago)
Author:
PierreLannoy
Message:

oEmbed Manager 3.3.0 released from GitHub

Location:
oembed-manager
Files:
10 edited
1 copied

Legend:

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

    r3272127 r3400890  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **oEmbed 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
  • oembed-manager/tags/3.3.0/includes/plugin/class-updater.php

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

    r3272127 r3400890  
    1313define( 'OEMM_PRODUCT_ABBREVIATION', 'oemm' );
    1414define( 'OEMM_SLUG', 'oembed-manager' );
    15 define( 'OEMM_VERSION', '3.2.0' );
     15define( 'OEMM_VERSION', '3.3.0' );
    1616define( 'OEMM_CODENAME', '"-"' );
    1717
  • oembed-manager/tags/3.3.0/oembed-manager.php

    r3272127 r3400890  
    1111 * Plugin URI:        https://perfops.one/oembed-manager
    1212 * Description:       Manage oEmbed capabilities of your website and take a new step in the GDPR compliance of your embedded content.
    13  * Version:           3.2.0
     13 * Version:           3.3.0
    1414 * Requires at least: 6.2
    1515 * Requires PHP:      8.1
  • oembed-manager/tags/3.3.0/readme.txt

    r3272127 r3400890  
    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
  • oembed-manager/trunk/CHANGELOG.md

    r3272127 r3400890  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **oEmbed 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
  • oembed-manager/trunk/includes/plugin/class-updater.php

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

    r3272127 r3400890  
    1313define( 'OEMM_PRODUCT_ABBREVIATION', 'oemm' );
    1414define( 'OEMM_SLUG', 'oembed-manager' );
    15 define( 'OEMM_VERSION', '3.2.0' );
     15define( 'OEMM_VERSION', '3.3.0' );
    1616define( 'OEMM_CODENAME', '"-"' );
    1717
  • oembed-manager/trunk/oembed-manager.php

    r3272127 r3400890  
    1111 * Plugin URI:        https://perfops.one/oembed-manager
    1212 * Description:       Manage oEmbed capabilities of your website and take a new step in the GDPR compliance of your embedded content.
    13  * Version:           3.2.0
     13 * Version:           3.3.0
    1414 * Requires at least: 6.2
    1515 * Requires PHP:      8.1
  • oembed-manager/trunk/readme.txt

    r3272127 r3400890  
    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.