Version Description
Download this release
Release Info
Developer | nico23 |
Plugin | ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) |
Version | 8.10.7 |
Comparing to | |
See all releases |
Code changes from version 8.10.6 to 8.10.7
advanced-responsive-video-embedder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: ARVE Advanced Responsive Video Embedder
|
4 |
* Plugin URI: https://nextgenthemes.com/plugins/arve-pro/
|
5 |
* Description: Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
|
6 |
-
* Version: 8.10.
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
@@ -11,7 +11,7 @@
|
|
11 |
* Text Domain: advanced-responsive-video-embedder
|
12 |
* Domain Path: /languages
|
13 |
* GitHub Plugin URI: https://github.com/nextgenthemes/advanced-responsive-video-embedder
|
14 |
-
* GitHub Branch:
|
15 |
*/
|
16 |
|
17 |
if ( ! defined( 'WPINC' ) ) {
|
@@ -19,7 +19,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
19 |
}
|
20 |
|
21 |
define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
|
22 |
-
define( 'ARVE_VERSION', '8.10.
|
23 |
define( 'ARVE_PRO_VERSION_REQUIRED', '4.2.5' );
|
24 |
|
25 |
define( 'ARVE_URL', plugin_dir_url( __FILE__ ) );
|
3 |
* Plugin Name: ARVE Advanced Responsive Video Embedder
|
4 |
* Plugin URI: https://nextgenthemes.com/plugins/arve-pro/
|
5 |
* Description: Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
|
6 |
+
* Version: 8.10.7
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
11 |
* Text Domain: advanced-responsive-video-embedder
|
12 |
* Domain Path: /languages
|
13 |
* GitHub Plugin URI: https://github.com/nextgenthemes/advanced-responsive-video-embedder
|
14 |
+
* GitHub Branch: v8
|
15 |
*/
|
16 |
|
17 |
if ( ! defined( 'WPINC' ) ) {
|
19 |
}
|
20 |
|
21 |
define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
|
22 |
+
define( 'ARVE_VERSION', '8.10.7' );
|
23 |
define( 'ARVE_PRO_VERSION_REQUIRED', '4.2.5' );
|
24 |
|
25 |
define( 'ARVE_URL', plugin_dir_url( __FILE__ ) );
|
public/functions-shortcode-filters.php
CHANGED
@@ -107,6 +107,10 @@ function arve_sc_filter_attr( $a ) {
|
|
107 |
'height' => empty( $a['height'] ) ? false : $a['height'],
|
108 |
);
|
109 |
|
|
|
|
|
|
|
|
|
110 |
if ( false === $a['sandbox'] ) {
|
111 |
$a['iframe_attr']['sandbox'] = false;
|
112 |
}
|
107 |
'height' => empty( $a['height'] ) ? false : $a['height'],
|
108 |
);
|
109 |
|
110 |
+
if ( 'vimeo' == $a['provider'] ) {
|
111 |
+
$a['iframe_attr']['sandbox'] .= ' allow-forms';
|
112 |
+
}
|
113 |
+
|
114 |
if ( false === $a['sandbox'] ) {
|
115 |
$a['iframe_attr']['sandbox'] = false;
|
116 |
}
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embe
|
|
5 |
Requires at least: 4.4.0
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 8.10.
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -158,6 +158,10 @@ This plugins embed is considered as 'custom player' by YouTube so you have to pa
|
|
158 |
* [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/arve-pro/changelog/)
|
159 |
* [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
|
160 |
|
|
|
|
|
|
|
|
|
161 |
### 2019-07-31 - 8.10.6 ###
|
162 |
|
163 |
* Fix: Vimeo Action links not working correctly in Chrome when Sandbox is enabled. You can fix this by adding `sandbox="false"` to your shortcodes. But the ARVE Pro "disable links" option will no longer work.
|
5 |
Requires at least: 4.4.0
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 8.10.7
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
158 |
* [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/arve-pro/changelog/)
|
159 |
* [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
|
160 |
|
161 |
+
### 2019-08-13 - 8.10.7 ###
|
162 |
+
|
163 |
+
* Setting the right branch (v8) for Github updater plugin.
|
164 |
+
|
165 |
### 2019-07-31 - 8.10.6 ###
|
166 |
|
167 |
* Fix: Vimeo Action links not working correctly in Chrome when Sandbox is enabled. You can fix this by adding `sandbox="false"` to your shortcodes. But the ARVE Pro "disable links" option will no longer work.
|