Plugin Directory

Changeset 3232852


Ignore:
Timestamp:
01/31/2025 06:21:10 PM (13 months ago)
Author:
lushkant
Message:

Update to version 0.24.0 from GitHub

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

Legend:

Unmodified
Added
Removed
  • really-simple-featured-video/tags/0.24.0/includes/Compatibility/Plugins/WooCommerce/class-compatibility.php

    r3140227 r3232852  
    210210
    211211        // Get autoplay option.
    212         $is_autoplay = is_array( $video_controls ) && isset( $video_controls['autoplay'] );
     212        $is_autoplay = ( is_array( $video_controls ) && isset( $video_controls['autoplay'] ) ) && $video_controls['autoplay'];
    213213
    214214        // Get loop option.
    215         $is_loop = is_array( $video_controls ) && isset( $video_controls['loop'] );
     215        $is_loop = ( is_array( $video_controls ) && isset( $video_controls['loop'] ) ) && $video_controls['loop'];
    216216
    217217        // Get mute option.
    218         $is_muted = is_array( $video_controls ) && isset( $video_controls['mute'] );
     218        $is_muted = ( is_array( $video_controls ) && isset( $video_controls['mute'] ) ) && $video_controls['mute'];
    219219
    220220        // Get PictureInPicture option.
    221         $is_pip = is_array( $video_controls ) && isset( $video_controls['pip'] );
     221        $is_pip = ( is_array( $video_controls ) && isset( $video_controls['pip'] ) ) && $video_controls['pip'];
    222222
    223223        // Get video controls option.
    224         $has_controls = is_array( $video_controls ) && isset( $video_controls['controls'] );
     224        $has_controls = ( is_array( $video_controls ) && isset( $video_controls['controls'] ) ) && $video_controls['controls'];
    225225
    226226        $video_html = '';
  • really-simple-featured-video/tags/0.24.0/languages/rsfv.pot

    r3231529 r3232852  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Really Simple Featured Video 0.22.0\n"
     5"Project-Id-Version: Really Simple Featured Video 0.23.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/really-simple-featured-video\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-29T19:31:13+00:00\n"
     12"POT-Creation-Date: 2025-01-31T18:19:21+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    177177msgstr ""
    178178
    179 #: includes/Compatibility/class-theme-provider.php:166
     179#: includes/Compatibility/class-theme-provider.php:129
     180msgid "Flatsome"
     181msgstr ""
     182
     183#: includes/Compatibility/class-theme-provider.php:176
    180184msgid "Failed at registration"
    181185msgstr ""
    182186
    183 #: includes/Compatibility/class-theme-provider.php:167
     187#: includes/Compatibility/class-theme-provider.php:177
    184188msgid "Unregistered"
    185189msgstr ""
    186190
    187 #: includes/Compatibility/class-theme-provider.php:203
     191#: includes/Compatibility/class-theme-provider.php:213
    188192msgid "Disabled (Legacy)"
    189193msgstr ""
    190194
    191 #: includes/Compatibility/class-theme-provider.php:204
     195#: includes/Compatibility/class-theme-provider.php:214
    192196msgid "Auto (Do it for me)"
    193197msgstr ""
    194198
    195 #: includes/Compatibility/class-theme-provider.php:233
     199#: includes/Compatibility/class-theme-provider.php:243
    196200msgid "OceanWP (PRO)"
    197201msgstr ""
    198202
    199 #: includes/Compatibility/class-theme-provider.php:234
     203#: includes/Compatibility/class-theme-provider.php:244
    200204msgid "Jupiter X (PRO)"
    201205msgstr ""
    202206
    203 #: includes/Compatibility/class-theme-provider.php:235
     207#: includes/Compatibility/class-theme-provider.php:245
    204208msgid "Flatsome (PRO)"
    205209msgstr ""
    206210
    207 #: includes/Compatibility/class-theme-provider.php:236
     211#: includes/Compatibility/class-theme-provider.php:246
    208212msgid "Wellco (PRO)"
    209213msgstr ""
    210214
    211 #: includes/Compatibility/class-theme-provider.php:237
     215#: includes/Compatibility/class-theme-provider.php:247
    212216msgid "Avanam (PRO)"
    213217msgstr ""
    214218
    215 #: includes/Compatibility/class-theme-provider.php:238
     219#: includes/Compatibility/class-theme-provider.php:248
    216220msgid "Divi Builder (PRO)"
    217221msgstr ""
    218222
    219 #: includes/Compatibility/class-theme-provider.php:239
     223#: includes/Compatibility/class-theme-provider.php:249
    220224msgid "Avada (PRO)"
    221225msgstr ""
    222226
    223 #: includes/Compatibility/class-theme-provider.php:240
     227#: includes/Compatibility/class-theme-provider.php:250
    224228msgid "Konte (PRO)"
    225229msgstr ""
    226230
    227 #: includes/Compatibility/class-theme-provider.php:241
     231#: includes/Compatibility/class-theme-provider.php:251
    228232msgid "Lay (PRO)"
    229233msgstr ""
  • really-simple-featured-video/tags/0.24.0/readme.txt

    r3232844 r3232852  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.23.0
     6Stable tag: 0.24.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.24.0 =
     117- Fix: Incorrect Controls toggle output at WooCommerce videos
     118- Improvement: Updated translation files
    115119
    116120= 0.23.0 =
  • really-simple-featured-video/tags/0.24.0/really-simple-featured-video.php

    r3232844 r3232852  
    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.23.0
     6 * Version:     0.24.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.23.0' );
     21define( 'RSFV_VERSION', '0.24.0' );
    2222define( 'RSFV_PLUGIN_FILE', __FILE__ );
    2323define( 'RSFV_PLUGIN_URL', plugin_dir_url( RSFV_PLUGIN_FILE ) );
  • really-simple-featured-video/trunk/includes/Compatibility/Plugins/WooCommerce/class-compatibility.php

    r3140227 r3232852  
    210210
    211211        // Get autoplay option.
    212         $is_autoplay = is_array( $video_controls ) && isset( $video_controls['autoplay'] );
     212        $is_autoplay = ( is_array( $video_controls ) && isset( $video_controls['autoplay'] ) ) && $video_controls['autoplay'];
    213213
    214214        // Get loop option.
    215         $is_loop = is_array( $video_controls ) && isset( $video_controls['loop'] );
     215        $is_loop = ( is_array( $video_controls ) && isset( $video_controls['loop'] ) ) && $video_controls['loop'];
    216216
    217217        // Get mute option.
    218         $is_muted = is_array( $video_controls ) && isset( $video_controls['mute'] );
     218        $is_muted = ( is_array( $video_controls ) && isset( $video_controls['mute'] ) ) && $video_controls['mute'];
    219219
    220220        // Get PictureInPicture option.
    221         $is_pip = is_array( $video_controls ) && isset( $video_controls['pip'] );
     221        $is_pip = ( is_array( $video_controls ) && isset( $video_controls['pip'] ) ) && $video_controls['pip'];
    222222
    223223        // Get video controls option.
    224         $has_controls = is_array( $video_controls ) && isset( $video_controls['controls'] );
     224        $has_controls = ( is_array( $video_controls ) && isset( $video_controls['controls'] ) ) && $video_controls['controls'];
    225225
    226226        $video_html = '';
  • really-simple-featured-video/trunk/languages/rsfv.pot

    r3231529 r3232852  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Really Simple Featured Video 0.22.0\n"
     5"Project-Id-Version: Really Simple Featured Video 0.23.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/really-simple-featured-video\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-29T19:31:13+00:00\n"
     12"POT-Creation-Date: 2025-01-31T18:19:21+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    177177msgstr ""
    178178
    179 #: includes/Compatibility/class-theme-provider.php:166
     179#: includes/Compatibility/class-theme-provider.php:129
     180msgid "Flatsome"
     181msgstr ""
     182
     183#: includes/Compatibility/class-theme-provider.php:176
    180184msgid "Failed at registration"
    181185msgstr ""
    182186
    183 #: includes/Compatibility/class-theme-provider.php:167
     187#: includes/Compatibility/class-theme-provider.php:177
    184188msgid "Unregistered"
    185189msgstr ""
    186190
    187 #: includes/Compatibility/class-theme-provider.php:203
     191#: includes/Compatibility/class-theme-provider.php:213
    188192msgid "Disabled (Legacy)"
    189193msgstr ""
    190194
    191 #: includes/Compatibility/class-theme-provider.php:204
     195#: includes/Compatibility/class-theme-provider.php:214
    192196msgid "Auto (Do it for me)"
    193197msgstr ""
    194198
    195 #: includes/Compatibility/class-theme-provider.php:233
     199#: includes/Compatibility/class-theme-provider.php:243
    196200msgid "OceanWP (PRO)"
    197201msgstr ""
    198202
    199 #: includes/Compatibility/class-theme-provider.php:234
     203#: includes/Compatibility/class-theme-provider.php:244
    200204msgid "Jupiter X (PRO)"
    201205msgstr ""
    202206
    203 #: includes/Compatibility/class-theme-provider.php:235
     207#: includes/Compatibility/class-theme-provider.php:245
    204208msgid "Flatsome (PRO)"
    205209msgstr ""
    206210
    207 #: includes/Compatibility/class-theme-provider.php:236
     211#: includes/Compatibility/class-theme-provider.php:246
    208212msgid "Wellco (PRO)"
    209213msgstr ""
    210214
    211 #: includes/Compatibility/class-theme-provider.php:237
     215#: includes/Compatibility/class-theme-provider.php:247
    212216msgid "Avanam (PRO)"
    213217msgstr ""
    214218
    215 #: includes/Compatibility/class-theme-provider.php:238
     219#: includes/Compatibility/class-theme-provider.php:248
    216220msgid "Divi Builder (PRO)"
    217221msgstr ""
    218222
    219 #: includes/Compatibility/class-theme-provider.php:239
     223#: includes/Compatibility/class-theme-provider.php:249
    220224msgid "Avada (PRO)"
    221225msgstr ""
    222226
    223 #: includes/Compatibility/class-theme-provider.php:240
     227#: includes/Compatibility/class-theme-provider.php:250
    224228msgid "Konte (PRO)"
    225229msgstr ""
    226230
    227 #: includes/Compatibility/class-theme-provider.php:241
     231#: includes/Compatibility/class-theme-provider.php:251
    228232msgid "Lay (PRO)"
    229233msgstr ""
  • really-simple-featured-video/trunk/readme.txt

    r3232844 r3232852  
    44Requires PHP: 8.0
    55Tested up to: 6.7.1
    6 Stable tag: 0.23.0
     6Stable tag: 0.24.0
    77Tags: video, featured video, woocommerce, product video, video embed
    88License: GPLv2
     
    113113
    114114== Changelog ==
     115
     116= 0.24.0 =
     117- Fix: Incorrect Controls toggle output at WooCommerce videos
     118- Improvement: Updated translation files
    115119
    116120= 0.23.0 =
  • really-simple-featured-video/trunk/really-simple-featured-video.php

    r3232844 r3232852  
    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.23.0
     6 * Version:     0.24.0
    77 * Author:      JetixWP Plugins
    88 * Author URI:  https://jetixwp.com
     
    1919defined( 'ABSPATH' ) || exit;
    2020
    21 define( 'RSFV_VERSION', '0.23.0' );
     21define( 'RSFV_VERSION', '0.24.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.