Version Description
Download this release
Release Info
Developer | nico23 |
Plugin | ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) |
Version | 9.5.7 |
Comparing to | |
See all releases |
Code changes from version 9.5.6 to 9.5.7
- advanced-responsive-video-embedder.php +2 -2
- changelog.md +5 -0
- php/functions-assets.php +6 -5
- readme.txt +7 -2
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.5.
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
@@ -19,7 +19,7 @@
|
|
19 |
|
20 |
namespace Nextgenthemes\ARVE;
|
21 |
|
22 |
-
const VERSION = '9.5.
|
23 |
const PRO_VERSION_REQUIRED = '5.1.11';
|
24 |
const NUM_TRACKS = 3;
|
25 |
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.5.7
|
7 |
* Author: Nicolas Jonas
|
8 |
* Author URI: https://nextgenthemes.com
|
9 |
* License: GPL-3.0
|
19 |
|
20 |
namespace Nextgenthemes\ARVE;
|
21 |
|
22 |
+
const VERSION = '9.5.7';
|
23 |
const PRO_VERSION_REQUIRED = '5.1.11';
|
24 |
const NUM_TRACKS = 3;
|
25 |
const PLUGIN_FILE = __FILE__;
|
changelog.md
CHANGED
@@ -4,6 +4,11 @@
|
|
4 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
5 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
### 2021-03-09 9.5.6 ###
|
8 |
|
9 |
* Improved: Load scripts with higher priority.
|
4 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
5 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
|
6 |
|
7 |
+
### 2021-03-11 9.5.7 ###
|
8 |
+
|
9 |
+
* Minor tweak: Load main.js in `<head>`.
|
10 |
+
* Tested with WP 5.7.0
|
11 |
+
|
12 |
### 2021-03-09 9.5.6 ###
|
13 |
|
14 |
* Improved: Load scripts with higher priority.
|
php/functions-assets.php
CHANGED
@@ -14,11 +14,12 @@ function register_assets() {
|
|
14 |
|
15 |
Common\asset(
|
16 |
array(
|
17 |
-
'handle'
|
18 |
-
'src'
|
19 |
-
'path'
|
20 |
-
'async'
|
21 |
-
'
|
|
|
22 |
)
|
23 |
);
|
24 |
|
14 |
|
15 |
Common\asset(
|
16 |
array(
|
17 |
+
'handle' => 'arve-main',
|
18 |
+
'src' => plugins_url( 'build/main.js', PLUGIN_FILE ),
|
19 |
+
'path' => PLUGIN_DIR . '/build/main.js',
|
20 |
+
'async' => true,
|
21 |
+
'in_footer' => false,
|
22 |
+
'defer' => false,
|
23 |
)
|
24 |
);
|
25 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: nico23
|
|
3 |
Donate link: https://nextgenthemes.com/donate/
|
4 |
Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes
|
5 |
Requires at least: 4.9.16
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 9.5.
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -193,6 +193,11 @@ Please read the [official documentation](https://wordpress.org/support/article/m
|
|
193 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
194 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
|
195 |
|
|
|
|
|
|
|
|
|
|
|
196 |
### 2021-03-09 9.5.6 ###
|
197 |
|
198 |
* Improved: Load scripts with higher priority.
|
3 |
Donate link: https://nextgenthemes.com/donate/
|
4 |
Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes
|
5 |
Requires at least: 4.9.16
|
6 |
+
Tested up to: 5.7.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 9.5.7
|
9 |
License: GPL-3.0
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
193 |
* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
|
194 |
* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
|
195 |
|
196 |
+
### 2021-03-11 9.5.7 ###
|
197 |
+
|
198 |
+
* Minor tweak: Load main.js in `<head>`.
|
199 |
+
* Tested with WP 5.7.0
|
200 |
+
|
201 |
### 2021-03-09 9.5.6 ###
|
202 |
|
203 |
* Improved: Load scripts with higher priority.
|