Plugin Directory

Changeset 2849395


Ignore:
Timestamp:
01/16/2023 07:23:08 PM (3 years ago)
Author:
dman25560
Message:
  • Security updates
Location:
utubevideo-gallery
Files:
1367 added
7 edited

Legend:

Unmodified
Added
Removed
  • utubevideo-gallery/trunk/config.php

    r2816281 r2849395  
    22
    33// plugin config
    4 const CC_UTUBEVIDEOGALLERY_VERSION = '2.0.7';
     4const CC_UTUBEVIDEOGALLERY_VERSION = '2.0.8';
    55const CC_UTUBEVIDEOGALLERY_MIN_PHP_VERSION = '7.0.0';
  • utubevideo-gallery/trunk/package-lock.json

    r2816281 r2849395  
    11{
    22  "name": "utubevideo-gallery",
    3   "version": "2.0.6",
     3  "version": "2.0.8",
    44  "lockfileVersion": 2,
    55  "requires": true,
     
    77    "": {
    88      "name": "utubevideo-gallery",
    9       "version": "2.0.6",
     9      "version": "2.0.8",
    1010      "license": "ISC",
    1111      "devDependencies": {
  • utubevideo-gallery/trunk/package.json

    r2816281 r2849395  
    11{
    22  "name": "utubevideo-gallery",
    3   "version": "2.0.6",
     3  "version": "2.0.8",
    44  "description": "A YouTube and Vimeo video gallery plugin for WordPress.",
    55  "main": "index.js",
  • utubevideo-gallery/trunk/readme.txt

    r2816281 r2849395  
    66Requires PHP: 7.0
    77Tested up to: 6.1
    8 Stable tag: 2.0.7
     8Stable tag: 2.0.8
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8989
    9090== Changelog ==
     91
     92= 2.0.8 =
     93
     94* Security updates
    9195
    9296= 2.0.7 =
  • utubevideo-gallery/trunk/src/UI/GalleryUI.php

    r2558965 r2849395  
    3131    return '<div
    3232      class="utv-gallery-root"
    33       data-id="' . $this->atts['id'] . '"
    34       data-icontype="' . $this->atts['icon'] . '"
    35       data-max-videos="' . $this->atts['maxvideos'] . '"
    36       data-max-albums="' . $this->atts['maxalbums'] . '"
    37       data-thumbnails-per-page="' . $this->atts['thumbnailsperpage'] . '"
     33      data-id="' . esc_attr($this->atts['id']) . '"
     34      data-icontype="' . esc_attr($this->atts['icon']) . '"
     35      data-max-videos="' . esc_attr($this->atts['maxvideos']) . '"
     36      data-max-albums="' . esc_attr($this->atts['maxalbums']) . '"
     37      data-thumbnails-per-page="' . esc_attr($this->atts['thumbnailsperpage']) . '"
    3838    ></div>';
    3939  }
  • utubevideo-gallery/trunk/src/UI/PanelUI.php

    r2558965 r2849395  
    2929    return '<div
    3030      class="utv-panel-root"
    31       data-id="' . $this->atts['id'] . '"
    32       data-controls="' . $this->atts['controls'] . '"
    33       data-videos-per-page="' . $this->atts['panelvideocount'] . '"
    34       data-theme="' . $this->atts['theme'] . '"
    35       data-icon="' . $this->atts['icon'] . '"
    36       data-max-videos="' . $this->atts['maxvideos'] . '"
     31      data-id="' . esc_attr($this->atts['id']) . '"
     32      data-controls="' . esc_attr($this->atts['controls']) . '"
     33      data-videos-per-page="' . esc_attr($this->atts['panelvideocount']) . '"
     34      data-theme="' . esc_attr($this->atts['theme']) . '"
     35      data-icon="' . esc_attr($this->atts['icon']) . '"
     36      data-max-videos="' . esc_attr($this->atts['maxvideos']) . '"
    3737    ></div>';
    3838  }
  • utubevideo-gallery/trunk/utubevideo.php

    r2816283 r2849395  
    44Plugin URI: http://www.dscarberry.com/
    55Description: This plugin allows you to create YouTube video galleries to embed in a WordPress site.
    6 Version: 2.0.7
     6Version: 2.0.8
    77Author: Dustin Scarberry
    88Author URI: http://www.dscarberry.com/
Note: See TracChangeset for help on using the changeset viewer.