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

Version Description

Download this release

Release Info

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

Code changes from version 9.5.5 to 9.5.6

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.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.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.6
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.6';
23
  const PRO_VERSION_REQUIRED = '5.1.11';
24
  const NUM_TRACKS = 3;
25
  const PLUGIN_FILE = __FILE__;
build/admin.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '5fd2792ec9d8e13cf53971029614082a');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '02659a8577c541ea3a18006774a3a7d1');
build/block.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-block-editor', 'wp-components', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-server-side-render'), 'version' => 'e6010f3b6b8c3e5ee576b20d8ddeb95d');
1
+ <?php return array('dependencies' => array('wp-block-editor', 'wp-components', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-server-side-render'), 'version' => 'b488d91ded1978cdde2fe070a0dbbd09');
build/main.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '93831b05717710cd7302ad097b6e5775');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '8d9041dffdd559096a49d6ed127521cd');
build/settings.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '068ee1f575035d72419527cb8862cce7');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '2405423ca031385e32efbf37fdd2bd96');
build/shortcode-ui.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '59c3e925f5a380a994d7bcf79093a27c');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => 'e97b173d61ca260c9482e76c5b653e93');
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-08 9.5.5 ###
8
 
9
  * Fix: JSON decode error appearing.
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.
10
+ * Fix: Error related to removed notice script.
11
+
12
  ### 2021-03-08 9.5.5 ###
13
 
14
  * Fix: JSON decode error appearing.
php/Common/Admin/Notices.php CHANGED
@@ -112,7 +112,6 @@ if ( 'always' ) {
112
  }
113
 
114
  add_action( 'admin_notices', array( self::$instance, 'display' ) );
115
- add_action( 'admin_print_scripts', array( self::$instance, 'load_script' ) );
116
  add_action( 'wp_ajax_dnh_dismiss_notice', array( self::$instance, 'dismiss_notice_ajax' ) );
117
 
118
  }
112
  }
113
 
114
  add_action( 'admin_notices', array( self::$instance, 'display' ) );
 
115
  add_action( 'wp_ajax_dnh_dismiss_notice', array( self::$instance, 'dismiss_notice_ajax' ) );
116
 
117
  }
php/Common/functions-assets.php CHANGED
@@ -51,12 +51,12 @@ function asset( array $args ) {
51
  'path' => '',
52
  'async' => false,
53
  'cdn_src' => '',
54
- 'defer' => true,
55
  'deps' => array(),
56
  'enqueue' => false,
57
  'enqueue_hooks' => array(),
58
  'handle' => '',
59
- 'in_footer' => false,
60
  'integrity' => '',
61
  'media' => 'all',
62
  'src' => '',
51
  'path' => '',
52
  'async' => false,
53
  'cdn_src' => '',
54
+ 'defer' => false,
55
  'deps' => array(),
56
  'enqueue' => false,
57
  'enqueue_hooks' => array(),
58
  'handle' => '',
59
+ 'in_footer' => true,
60
  'integrity' => '',
61
  'media' => 'all',
62
  'src' => '',
php/functions-assets.php CHANGED
@@ -56,6 +56,7 @@ function register_assets() {
56
  'src' => plugins_url( 'build/block.js', PLUGIN_FILE ),
57
  'path' => PLUGIN_DIR . '/build/block.js',
58
  'deps' => array( 'arve' ),
 
59
  )
60
  );
61
  wp_localize_script( 'arve-block', 'ARVEsettings', $sc_settings );
56
  'src' => plugins_url( 'build/block.js', PLUGIN_FILE ),
57
  'path' => PLUGIN_DIR . '/build/block.js',
58
  'deps' => array( 'arve' ),
59
+ 'footer' => 'false',
60
  )
61
  );
62
  wp_localize_script( 'arve-block', 'ARVEsettings', $sc_settings );
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.6.2
7
  Requires PHP: 5.6
8
- Stable tag: 9.5.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-08 9.5.5 ###
197
 
198
  * Fix: JSON decode error appearing.
5
  Requires at least: 4.9.16
6
  Tested up to: 5.6.2
7
  Requires PHP: 5.6
8
+ Stable tag: 9.5.6
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-09 9.5.6 ###
197
+
198
+ * Improved: Load scripts with higher priority.
199
+ * Fix: Error related to removed notice script.
200
+
201
  ### 2021-03-08 9.5.5 ###
202
 
203
  * Fix: JSON decode error appearing.