Version Description
Download this release
Release Info
Developer | nico23 |
Plugin | ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) |
Version | 9.5.8 |
Comparing to | |
See all releases |
Code changes from version 9.5.7 to 9.5.8
- advanced-responsive-video-embedder.php +2 -2
- changelog.md +5 -0
- php/functions-assets.php +2 -2
- 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.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.8
|
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.8';
|
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-11 9.5.7 ###
|
8 |
|
9 |
* Minor tweak: Load main.js in `<head>`.
|
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 |
+
|
8 |
+
### 2021-03-11 9.5.8 ###
|
9 |
+
|
10 |
+
* Fix: Scripts wrongly moved to the `<head>` with the "Always load assets" option turned on.
|
11 |
+
|
12 |
### 2021-03-11 9.5.7 ###
|
13 |
|
14 |
* Minor tweak: Load main.js in `<head>`.
|
php/functions-assets.php
CHANGED
@@ -24,8 +24,8 @@ function register_assets() {
|
|
24 |
);
|
25 |
|
26 |
// phpcs:disable WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
27 |
-
wp_register_script( 'arve', null, array( 'arve-main' ), null,
|
28 |
-
wp_register_style( 'arve', null, array( 'arve-main' ), null,
|
29 |
// phpcs:enable WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
30 |
|
31 |
if ( function_exists( 'register_block_type' ) ) :
|
24 |
);
|
25 |
|
26 |
// phpcs:disable WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
27 |
+
wp_register_script( 'arve', null, array( 'arve-main' ), null, true );
|
28 |
+
wp_register_style( 'arve', null, array( 'arve-main' ), null, true );
|
29 |
// phpcs:enable WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
30 |
|
31 |
if ( function_exists( 'register_block_type' ) ) :
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embe
|
|
5 |
Requires at least: 4.9.16
|
6 |
Tested up to: 5.7.0
|
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-11 9.5.7 ###
|
197 |
|
198 |
* Minor tweak: Load main.js in `<head>`.
|
5 |
Requires at least: 4.9.16
|
6 |
Tested up to: 5.7.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 9.5.8
|
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 |
+
|
197 |
+
### 2021-03-11 9.5.8 ###
|
198 |
+
|
199 |
+
* Fix: Scripts wrongly moved to the `<head>` with the "Always load assets" option turned on.
|
200 |
+
|
201 |
### 2021-03-11 9.5.7 ###
|
202 |
|
203 |
* Minor tweak: Load main.js in `<head>`.
|