ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) - Version 8.10.4

Version Description

Download this release

Release Info

Developer nico23
Plugin Icon 128x128 ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …)
Version 8.10.4
Comparing to
See all releases

Code changes from version 8.10.3 to 8.10.4

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.3
7
  * Author: Nicolas Jonas
8
  * Author URI: https://nextgenthemes.com
9
  * License: GPL-3.0
@@ -19,7 +19,7 @@ if ( ! defined( 'WPINC' ) ) {
19
  }
20
 
21
  define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
22
- define( 'ARVE_VERSION', '8.10.3' );
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.4
7
  * Author: Nicolas Jonas
8
  * Author URI: https://nextgenthemes.com
9
  * License: GPL-3.0
19
  }
20
 
21
  define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
22
+ define( 'ARVE_VERSION', '8.10.4' );
23
  define( 'ARVE_PRO_VERSION_REQUIRED', '4.2.5' );
24
 
25
  define( 'ARVE_URL', plugin_dir_url( __FILE__ ) );
public/functions-html-output.php CHANGED
@@ -92,10 +92,10 @@ function arve_build_meta_html( $a ) {
92
  array(
93
  'name' => 'thumbnail',
94
  'tag' => 'meta',
95
- 'attr' => [
96
  'itemprop' => 'thumbnailUrl',
97
  'content' => $a['img_src'],
98
- ],
99
  ),
100
  $a
101
  );
@@ -108,10 +108,10 @@ function arve_build_meta_html( $a ) {
108
  array(
109
  'name' => 'title',
110
  'tag' => 'meta',
111
- 'attr' => [
112
  'itemprop' => 'name',
113
  'content' => trim( $a['title'] ),
114
- ]
115
  ),
116
  $a
117
  );
92
  array(
93
  'name' => 'thumbnail',
94
  'tag' => 'meta',
95
+ 'attr' => array(
96
  'itemprop' => 'thumbnailUrl',
97
  'content' => $a['img_src'],
98
+ ),
99
  ),
100
  $a
101
  );
108
  array(
109
  'name' => 'title',
110
  'tag' => 'meta',
111
+ 'attr' => array(
112
  'itemprop' => 'name',
113
  'content' => trim( $a['title'] ),
114
+ )
115
  ),
116
  $a
117
  );
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: 4.9.4
7
  Requires PHP: 5.3
8
- Stable tag: 8.10.3
9
  License: GPL-3.0
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -158,7 +158,7 @@ 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-01-17 - 8.10.3 ###
162
 
163
  * Fix: PHP compatibility lowered to offical 5.3 as there was accidentally 5.4+ code used. Make sure you are on PHP 7.3 or at least 5.6 for the upcoming future as WP itself will require 5.6 this year. Its also insecure to run on those outdated versions: https://secure.php.net/supported-versions.php.
164
 
5
  Requires at least: 4.4.0
6
  Tested up to: 4.9.4
7
  Requires PHP: 5.3
8
+ Stable tag: 8.10.4
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-01-23 - 8.10.4 ###
162
 
163
  * Fix: PHP compatibility lowered to offical 5.3 as there was accidentally 5.4+ code used. Make sure you are on PHP 7.3 or at least 5.6 for the upcoming future as WP itself will require 5.6 this year. Its also insecure to run on those outdated versions: https://secure.php.net/supported-versions.php.
164