Version Description
Download this release
Release Info
Developer | nico23 |
Plugin | ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) |
Version | 9.1.2 |
Comparing to | |
See all releases |
Code changes from version 9.1.1 to 9.1.2
- advanced-responsive-video-embedder.php +2 -2
- php/functions-shortcodes.php +2 -3
- readme.txt +6 -1
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: 9.1.
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
@@ -21,7 +21,7 @@
|
|
21 |
|
22 |
namespace Nextgenthemes\ARVE;
|
23 |
|
24 |
-
const VERSION = '9.1.
|
25 |
const PRO_VERSION_REQUIRED = '5.0.0-beta5';
|
26 |
const NUM_TRACKS = 3;
|
27 |
const PLUGIN_FILE = __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: 9.1.2
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
21 |
|
22 |
namespace Nextgenthemes\ARVE;
|
23 |
|
24 |
+
const VERSION = '9.1.2';
|
25 |
const PRO_VERSION_REQUIRED = '5.0.0-beta5';
|
26 |
const NUM_TRACKS = 3;
|
27 |
const PLUGIN_FILE = __FILE__;
|
php/functions-shortcodes.php
CHANGED
@@ -183,9 +183,8 @@ function wp_video_shortcode_override( $out, $attr ) {
|
|
183 |
return $out;
|
184 |
}
|
185 |
|
186 |
-
if ( ! empty( $attr['
|
187 |
-
|
188 |
-
) {
|
189 |
unset( $attr['src'] );
|
190 |
}
|
191 |
|
183 |
return $out;
|
184 |
}
|
185 |
|
186 |
+
if ( empty( $attr['url'] ) && ! empty( $attr['src'] ) ) {
|
187 |
+
$attr['url'] = $attr['src'];
|
|
|
188 |
unset( $attr['src'] );
|
189 |
}
|
190 |
|
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.6
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 9.1.
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -16,9 +16,14 @@ Easy responsive video embeds via URLs or shortcodes. Perfect drop-in replacement
|
|
16 |
* [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/arve-pro/changelog/)
|
17 |
* [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
|
18 |
|
|
|
|
|
|
|
|
|
19 |
### 2020-12-24 9.1.1 ###
|
20 |
|
21 |
* Marry XMAS, bitches.
|
|
|
22 |
|
23 |
### 2020-12-23 9.1.0 ###
|
24 |
|
5 |
Requires at least: 4.4.0
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 9.1.2
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
16 |
* [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/arve-pro/changelog/)
|
17 |
* [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
|
18 |
|
19 |
+
### 2020-12-24 9.1.2 ###
|
20 |
+
|
21 |
+
* Fix: Missing attribute errors when using `[embed]https://example.com/vid.mp4[/embed]` like shortcodes.
|
22 |
+
|
23 |
### 2020-12-24 9.1.1 ###
|
24 |
|
25 |
* Marry XMAS, bitches.
|
26 |
+
* Fix: Errors related to video shortcode override.
|
27 |
|
28 |
### 2020-12-23 9.1.0 ###
|
29 |
|