Version Description
Download this release
Release Info
Developer | nico23 |
Plugin | ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) |
Version | 9.2.4 |
Comparing to | |
See all releases |
Code changes from version 9.2.3 to 9.2.4
- advanced-responsive-video-embedder.php +2 -2
- changelog.md +4 -0
- php/Common/functions-string.php +1 -0
- php/functions-settings.php +1 -0
- readme.txt +5 -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.2.
|
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.2.
|
25 |
const PRO_VERSION_REQUIRED = '5.1.5';
|
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.2.4
|
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.2.4';
|
25 |
const PRO_VERSION_REQUIRED = '5.1.5';
|
26 |
const NUM_TRACKS = 3;
|
27 |
const PLUGIN_FILE = __FILE__;
|
changelog.md
CHANGED
@@ -4,6 +4,10 @@
|
|
4 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
5 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/random-video/#changelog)
|
6 |
|
|
|
|
|
|
|
|
|
7 |
### 2021-01-21 9.2.3 ###
|
8 |
|
9 |
* Revert some things that made latest Pro tests fail
|
4 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
5 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/random-video/#changelog)
|
6 |
|
7 |
+
### 2021-01-21 9.2.4 ###
|
8 |
+
|
9 |
+
* Fix: Missing 'Normal' mode select
|
10 |
+
|
11 |
### 2021-01-21 9.2.3 ###
|
12 |
|
13 |
* Revert some things that made latest Pro tests fail
|
php/Common/functions-string.php
CHANGED
@@ -56,6 +56,7 @@ function kses_basic( $html_with_a ) {
|
|
56 |
'br' => [],
|
57 |
'em' => [],
|
58 |
'strong' => [],
|
|
|
59 |
]
|
60 |
);
|
61 |
}
|
56 |
'br' => [],
|
57 |
'em' => [],
|
58 |
'strong' => [],
|
59 |
+
'code' => [],
|
60 |
]
|
61 |
);
|
62 |
}
|
php/functions-settings.php
CHANGED
@@ -339,6 +339,7 @@ function all_settings() {
|
|
339 |
'type' => 'select',
|
340 |
'options' => [
|
341 |
'' => __( 'Default (settings page)', 'advanced-responsive-video-embedder' ),
|
|
|
342 |
'lazyload' => __( 'Lazyload', 'advanced-responsive-video-embedder' ),
|
343 |
'lightbox' => __( 'Lightbox', 'advanced-responsive-video-embedder' ),
|
344 |
'link-lightbox' => __( 'Link -> Lightbox', 'advanced-responsive-video-embedder' ),
|
339 |
'type' => 'select',
|
340 |
'options' => [
|
341 |
'' => __( 'Default (settings page)', 'advanced-responsive-video-embedder' ),
|
342 |
+
'normal' => __( 'Normal', 'advanced-responsive-video-embedder' ),
|
343 |
'lazyload' => __( 'Lazyload', 'advanced-responsive-video-embedder' ),
|
344 |
'lightbox' => __( 'Lightbox', 'advanced-responsive-video-embedder' ),
|
345 |
'link-lightbox' => __( 'Link -> Lightbox', 'advanced-responsive-video-embedder' ),
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embe
|
|
5 |
Requires at least: 4.4.24
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 9.2.
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -172,6 +172,10 @@ This plugins embed is considered as 'custom player' by YouTube so you have to pa
|
|
172 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
173 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/random-video/#changelog)
|
174 |
|
|
|
|
|
|
|
|
|
175 |
### 2021-01-21 9.2.3 ###
|
176 |
|
177 |
* Revert some things that made latest Pro tests fail
|
5 |
Requires at least: 4.4.24
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 9.2.4
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
172 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
173 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/random-video/#changelog)
|
174 |
|
175 |
+
### 2021-01-21 9.2.4 ###
|
176 |
+
|
177 |
+
* Fix: Missing 'Normal' mode select
|
178 |
+
|
179 |
### 2021-01-21 9.2.3 ###
|
180 |
|
181 |
* Revert some things that made latest Pro tests fail
|