Plugin Directory

Changeset 3232844


Ignore:
Timestamp:
01/31/2025 06:07:35 PM (6 weeks ago)
Author:
lushkant
Message:

Update to version 0.23.0 from GitHub

Location:
really-simple-featured-video
Files:
4 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • really-simple-featured-video/tags/0.23.0/includes/Compatibility/Themes/Core/Twentytwenty_Five/styles.css

    r3220690 r3232844  
    2222    display: none;
    2323}
     24
     25.rsfa-has-video .wp-block-post-featured-image {
     26    aspect-ratio: auto !important;
     27}
  • really-simple-featured-video/tags/0.23.0/includes/Compatibility/class-theme-provider.php

    r3220690 r3232844  
    126126                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Hestia\Compatibility',
    127127                ),
     128                'flatsome'          => array(
     129                    'title'       => __( 'Flatsome', 'rsfv' ),
     130                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php',
     131                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Flatsome\Compatibility',
     132                ),
    128133            )
    129134        );
     
    155160
    156161        $theme_engines = $this->get_theme_engines();
     162
     163        // To make sure child themes don't escape parents.
     164        if ( str_contains( $theme_slug, '-child' ) ) {
     165            $theme_slug = str_replace( '-child', '', $theme_slug );
     166        }
    157167
    158168        if ( ! in_array( $theme_slug, array_keys( $theme_engines ), true ) ) {
  • really-simple-featured-video/tags/0.23.0/readme.txt

    r3232561 r3232844  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.22.0
     6Stable tag: 0.23.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.23.0 =
     117- New: Flatsome theme compatibility engine
     118- Improvement: Child themes causing Parent themes to get ignored via Theme Compatibility engine selector
     119- Improvement: Improved Twenty-Twenty Five theme compatibility
     120- Improvement: Other minor changes
    115121
    116122= 0.22.0 =
  • really-simple-featured-video/tags/0.23.0/really-simple-featured-video.php

    r3231529 r3232844  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-video
    55 * Description: Adds support for Featured Video to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.22.0
     6 * Version:     0.23.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.22.0' );
     21define( 'RSFV_VERSION', '0.23.0' );
    2222define( 'RSFV_PLUGIN_FILE', __FILE__ );
    2323define( 'RSFV_PLUGIN_URL', plugin_dir_url( RSFV_PLUGIN_FILE ) );
  • really-simple-featured-video/trunk/includes/Compatibility/Themes/Core/Twentytwenty_Five/styles.css

    r3220690 r3232844  
    2222    display: none;
    2323}
     24
     25.rsfa-has-video .wp-block-post-featured-image {
     26    aspect-ratio: auto !important;
     27}
  • really-simple-featured-video/trunk/includes/Compatibility/class-theme-provider.php

    r3220690 r3232844  
    126126                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Hestia\Compatibility',
    127127                ),
     128                'flatsome'          => array(
     129                    'title'       => __( 'Flatsome', 'rsfv' ),
     130                    'file_source' => RSFV_PLUGIN_DIR . 'includes/Compatibility/Themes/ThirdParty/Flatsome/class-compatibility.php',
     131                    'class'       => 'RSFV\Compatibility\Themes\ThirdParty\Flatsome\Compatibility',
     132                ),
    128133            )
    129134        );
     
    155160
    156161        $theme_engines = $this->get_theme_engines();
     162
     163        // To make sure child themes don't escape parents.
     164        if ( str_contains( $theme_slug, '-child' ) ) {
     165            $theme_slug = str_replace( '-child', '', $theme_slug );
     166        }
    157167
    158168        if ( ! in_array( $theme_slug, array_keys( $theme_engines ), true ) ) {
  • really-simple-featured-video/trunk/readme.txt

    r3232561 r3232844  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.22.0
     6Stable tag: 0.23.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.23.0 =
     117- New: Flatsome theme compatibility engine
     118- Improvement: Child themes causing Parent themes to get ignored via Theme Compatibility engine selector
     119- Improvement: Improved Twenty-Twenty Five theme compatibility
     120- Improvement: Other minor changes
    115121
    116122= 0.22.0 =
  • really-simple-featured-video/trunk/really-simple-featured-video.php

    r3231529 r3232844  
    44 * Plugin URI:  https://jetixwp.com/plugins/really-simple-featured-video
    55 * Description: Adds support for Featured Video to WordPress posts, pages & WooCommerce products.
    6  * Version:     0.22.0
     6 * Version:     0.23.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.22.0' );
     21define( 'RSFV_VERSION', '0.23.0' );
    2222define( 'RSFV_PLUGIN_FILE', __FILE__ );
    2323define( 'RSFV_PLUGIN_URL', plugin_dir_url( RSFV_PLUGIN_FILE ) );
Note: See TracChangeset for help on using the changeset viewer.