Version Description
Download this release
Release Info
Developer | embedplus |
Plugin | YouTube |
Version | 13.4.1.1 |
Comparing to | |
See all releases |
Code changes from version 13.4.1 to 13.4.1.1
- readme.txt +4 -1
- youtube.php +5 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Embed Plus for YouTube - Gallery, Channel, Playlist, Live Stream
|
|
4 |
Tags: youtube gallery, video gallery, youtube channel, youtube live, live stream
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 13.4.1
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
YouTube Embed WordPress Plugin. Embed a responsive video, YouTube channel gallery, playlist gallery, or YouTube.com live stream (with GDPR options)
|
@@ -151,6 +151,9 @@ You can also start and end each individual video at particular times. Like the a
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
154 |
= Embed Plus for YouTube WordPress Plugin 13.4.1 =
|
155 |
* Better compatibility with WordPress 5.5
|
156 |
|
4 |
Tags: youtube gallery, video gallery, youtube channel, youtube live, live stream
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 13.4.1.1
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
YouTube Embed WordPress Plugin. Embed a responsive video, YouTube channel gallery, playlist gallery, or YouTube.com live stream (with GDPR options)
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= Embed Plus for YouTube WordPress Plugin 13.4.1.1 =
|
155 |
+
* Prevent deprecated notice for wp_make_content_images_responsive filter
|
156 |
+
|
157 |
= Embed Plus for YouTube WordPress Plugin 13.4.1 =
|
158 |
* Better compatibility with WordPress 5.5
|
159 |
|
youtube.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Embed Plus for YouTube - Gallery, Channel, Playlist, Live Stream
|
4 |
Plugin URI: https://www.embedplus.com/dashboard/pro-easy-video-analytics.aspx?ref=plugin
|
5 |
Description: YouTube Embed and YouTube Gallery WordPress Plugin. Embed a responsive video, YouTube channel, playlist gallery, or live stream
|
6 |
-
Version: 13.4.1
|
7 |
Author: Embed Plus for YouTube Team
|
8 |
Author URI: https://www.embedplus.com
|
9 |
*/
|
@@ -34,7 +34,7 @@ class YouTubePrefs
|
|
34 |
|
35 |
public static $folder_name = 'youtube-embed-plus';
|
36 |
public static $curltimeout = 30;
|
37 |
-
public static $version = '13.4.1';
|
38 |
public static $opt_version = 'version';
|
39 |
public static $optembedwidth = null;
|
40 |
public static $optembedheight = null;
|
@@ -135,6 +135,7 @@ class YouTubePrefs
|
|
135 |
'shortcode_unautop',
|
136 |
'prepend_attachment',
|
137 |
'wp_make_content_images_responsive',
|
|
|
138 |
'do_shortcode',
|
139 |
'convert_smilies'
|
140 |
);
|
@@ -2893,7 +2894,7 @@ class YouTubePrefs
|
|
2893 |
|
2894 |
for ($i = 0; $i < count(self::$the_content_filters); $i++)
|
2895 |
{
|
2896 |
-
if (function_exists(self::$the_content_filters[$i]))
|
2897 |
{
|
2898 |
$content = call_user_func(self::$the_content_filters[$i], $content);
|
2899 |
}
|
@@ -3176,7 +3177,7 @@ class YouTubePrefs
|
|
3176 |
$new_pointer_content = '<h3>' . __('New Update') . '</h3>'; // ooopointer
|
3177 |
|
3178 |
$new_pointer_content .= '<p>'; // ooopointer
|
3179 |
-
$new_pointer_content .= "This update
|
3180 |
if (self::vi_logged_in())
|
3181 |
{
|
3182 |
$new_pointer_content .= "<br><br><strong>Note:</strong> You are currently logged into the vi intelligence feature. vi support is being deprecated in the next version, so we recommend taking the vi ads down from your site. Please contact ext@embedplus.com for questions.";
|
3 |
Plugin Name: Embed Plus for YouTube - Gallery, Channel, Playlist, Live Stream
|
4 |
Plugin URI: https://www.embedplus.com/dashboard/pro-easy-video-analytics.aspx?ref=plugin
|
5 |
Description: YouTube Embed and YouTube Gallery WordPress Plugin. Embed a responsive video, YouTube channel, playlist gallery, or live stream
|
6 |
+
Version: 13.4.1.1
|
7 |
Author: Embed Plus for YouTube Team
|
8 |
Author URI: https://www.embedplus.com
|
9 |
*/
|
34 |
|
35 |
public static $folder_name = 'youtube-embed-plus';
|
36 |
public static $curltimeout = 30;
|
37 |
+
public static $version = '13.4.1.1';
|
38 |
public static $opt_version = 'version';
|
39 |
public static $optembedwidth = null;
|
40 |
public static $optembedheight = null;
|
135 |
'shortcode_unautop',
|
136 |
'prepend_attachment',
|
137 |
'wp_make_content_images_responsive',
|
138 |
+
'wp_filter_content_tags',
|
139 |
'do_shortcode',
|
140 |
'convert_smilies'
|
141 |
);
|
2894 |
|
2895 |
for ($i = 0; $i < count(self::$the_content_filters); $i++)
|
2896 |
{
|
2897 |
+
if (function_exists(self::$the_content_filters[$i]) && !(self::wp_above_version('5.5') && self::$the_content_filters[$i] === 'wp_make_content_images_responsive'))
|
2898 |
{
|
2899 |
$content = call_user_func(self::$the_content_filters[$i], $content);
|
2900 |
}
|
3177 |
$new_pointer_content = '<h3>' . __('New Update') . '</h3>'; // ooopointer
|
3178 |
|
3179 |
$new_pointer_content .= '<p>'; // ooopointer
|
3180 |
+
$new_pointer_content .= "This update removes deprecated notices for both Free and <a target=_blank href=" . self::$epbase . '/dashboard/pro-easy-video-analytics.aspx?ref=frompointer' . ">Pro versions</a>.";
|
3181 |
if (self::vi_logged_in())
|
3182 |
{
|
3183 |
$new_pointer_content .= "<br><br><strong>Note:</strong> You are currently logged into the vi intelligence feature. vi support is being deprecated in the next version, so we recommend taking the vi ads down from your site. Please contact ext@embedplus.com for questions.";
|