Plugin Directory

Changeset 2418205


Ignore:
Timestamp:
11/13/2020 08:03:29 PM (5 years ago)
Author:
JDAdmin
Message:

2.0.19

Location:
smartvideo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • smartvideo/trunk/README.txt

    r2373353 r2418205  
    33Tags: video player, swarmify, youtube, cdn, vimeo, embed, pagespeed, html5, flash, mobile, blocks
    44Requires at least: 3.0.1
    5 Tested up to: 5.5
     5Tested up to: 5.5.3
    66Stable tag: trunk
    77Requires PHP: 5.5
     
    8888== Changelog ==
    8989
     90= 2.0.19 =
     91* **No need to fear, dynamic tags are here**
     92  * Need to template up your massive video archive so that each post displays with the associated video in a SmartVideo tag. Easy breezy if you are an Elementor Pro user. Our SmartVideo widget can now dynamically load both the video source and/or poster image from any Elementor Pro dynamic tag. Quick, efficient, and beautiful
     93  * Elementor SmartVideo widget supports [dynamic tags](https://elementor.com/help/dynamic-tags-pro/) for Elementor Pro users
     94
    9095= 2.0.18 =
    9196* **Now you see me, now you don't**
  • smartvideo/trunk/SmartVideo.php

    r2373353 r2418205  
    1111 * Plugin URI:        https://swarmify.com/wordpress-plugin/
    1212 * Description:       SmartVideo makes building a beautiful, professional video experience for your site effortless.
    13  * Version:           2.0.18
     13 * Version:           2.0.19
    1414 * Author:            Swarmify
    1515 * Author URI:        https://swarmify.com/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.18' );
     32define( 'SWARMIFY_PLUGIN_VERSION', '2.0.19' );
    3333
    3434/**
  • smartvideo/trunk/page-builders/elementor/elementorsmartvideo.php

    r2236145 r2418205  
    5858                    'video_type' => 'media_library',
    5959                ],
     60                'dynamic' => [
     61                    'active' => true,
     62                ],
    6063                'default' => [
    6164                    'id' => '',
     
    7073                'label' => __( 'Link', 'swarmify' ),
    7174                'type' => Controls_Manager::TEXT,
    72                 'placeholder' => __( 'YouTube URL', 'swarmify' ) . ' (YouTube)',
     75                'placeholder' => __( 'YouTube URL', 'swarmify' ) . ' (YouTube)',
     76                'dynamic' => [
     77                    'active' => true,
     78                ],
    7379                'default' => 'https://www.youtube.com/watch?v=XHOmBV4js_E',
    7480                'label_block' => true,
     
    8490                'label' => __( 'Link', 'swarmify' ),
    8591                'type' => Controls_Manager::TEXT,
    86                 'placeholder' => __( 'Vimeo URL', 'swarmify' ) . ' (Vimeo)',
     92                'placeholder' => __( 'Vimeo URL', 'swarmify' ) . ' (Vimeo)',
     93                'dynamic' => [
     94                    'active' => true,
     95                ],
    8796                'default' => 'https://vimeo.com/235215203',
    8897                'label_block' => true,
     
    103112                'show_label' => false,
    104113                'media_type' => 'video',
    105                 'placeholder' => __( 'Enter your URL', 'swarmify' ),
     114                'placeholder' => __( 'Enter your URL', 'swarmify' ),
     115                'dynamic' => [
     116                    'active' => true,
     117                ],
    106118                'condition' => [
    107119                    'video_type' => 'another_source',
     
    142154                'condition' => [
    143155                    'poster' => 'media_library',
     156                ],
     157                'dynamic' => [
     158                    'active' => true,
    144159                ],
    145160            ]
     
    159174                'condition' => [
    160175                    'poster' => 'another_source',
     176                ],
     177                'dynamic' => [
     178                    'active' => true,
    161179                ],
    162180            ]
Note: See TracChangeset for help on using the changeset viewer.