All-in-One Video Gallery - Version 2.2.0

Version Description

  • Fix: The player controls not showing with vertical videos.
Download this release

Release Info

Developer plugins360
Plugin Icon 128x128 All-in-One Video Gallery
Version 2.2.0
Comparing to
See all releases

Code changes from version 2.1.0 to 2.2.0

README.txt CHANGED
@@ -6,7 +6,7 @@ Tags: video player, video gallery, youtube gallery, vimeo gallery, livestream
6
  Requires at least: 4.7.0
7
  Tested up to: 5.3
8
  Requires PHP: 5.3.0
9
- Stable tag: 2.1.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -110,6 +110,10 @@ Please describe your issue and submit a ticket on our plugin support forum, you
110
 
111
  == Changelog ==
112
 
 
 
 
 
113
  = 2.1.0 =
114
 
115
  * Fix: Subtitles not working.
@@ -261,6 +265,6 @@ Please describe your issue and submit a ticket on our plugin support forum, you
261
 
262
  == Upgrade Notice ==
263
 
264
- = 2.1.0 =
265
 
266
- Introduces several bug fixes. [See changelog](https://wordpress.org/plugins/all-in-one-video-gallery/#developers)
6
  Requires at least: 4.7.0
7
  Tested up to: 5.3
8
  Requires PHP: 5.3.0
9
+ Stable tag: 2.2.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
110
 
111
  == Changelog ==
112
 
113
+ = 2.2.0 =
114
+
115
+ * Fix: The player controls not showing with vertical videos.
116
+
117
  = 2.1.0 =
118
 
119
  * Fix: Subtitles not working.
265
 
266
  == Upgrade Notice ==
267
 
268
+ = 2.2.0 =
269
 
270
+ Introduces a bug fix. [See changelog](https://wordpress.org/plugins/all-in-one-video-gallery/#developers)
all-in-one-video-gallery.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin Name: All-in-One Video Gallery
12
  * Plugin URI: https://plugins360.com/all-in-one-video-gallery/
13
  * Description: No coding required. A Responsive & Lightweight video gallery plugin. HTML5 Player, Categories, Visual Builder (Gutenberg), Search Form, Comments, Social Sharing and everything you will need to build a YouTube/Vimeo like video sharing website.
14
- * Version: 2.1.0
15
  * Author: Team Plugins360
16
  * Author URI: https://plugins360.com
17
  * License: GPL-2.0+
@@ -76,7 +76,7 @@ if ( !function_exists( 'aiovg_fs' ) ) {
76
 
77
  // The current version of the plugin
78
  if ( !defined( 'AIOVG_PLUGIN_VERSION' ) ) {
79
- define( 'AIOVG_PLUGIN_VERSION', '2.1.0' );
80
  }
81
  // The unique identifier of the plugin
82
  if ( !defined( 'AIOVG_PLUGIN_SLUG' ) ) {
11
  * Plugin Name: All-in-One Video Gallery
12
  * Plugin URI: https://plugins360.com/all-in-one-video-gallery/
13
  * Description: No coding required. A Responsive & Lightweight video gallery plugin. HTML5 Player, Categories, Visual Builder (Gutenberg), Search Form, Comments, Social Sharing and everything you will need to build a YouTube/Vimeo like video sharing website.
14
+ * Version: 2.2.0
15
  * Author: Team Plugins360
16
  * Author URI: https://plugins360.com
17
  * License: GPL-2.0+
76
 
77
  // The current version of the plugin
78
  if ( !defined( 'AIOVG_PLUGIN_VERSION' ) ) {
79
+ define( 'AIOVG_PLUGIN_VERSION', '2.2.0' );
80
  }
81
  // The unique identifier of the plugin
82
  if ( !defined( 'AIOVG_PLUGIN_SLUG' ) ) {
public/templates/player-html5.php CHANGED
@@ -88,7 +88,6 @@ $attributes = apply_filters( 'aiovg_video_attributes', $attributes );
88
 
89
  // Player Settings
90
  $settings = array(
91
- 'fluid' => true,
92
  'controlBar' => array(),
93
  'autoplay' => isset( $_GET['autoplay'] ) ? (int) $_GET['autoplay'] : (int) $player_settings['autoplay'],
94
  'muted' => isset( $_GET['muted'] ) ? (int) $_GET['muted'] : (int) $player_settings['muted'],
@@ -171,7 +170,8 @@ $settings = apply_filters( 'aiovg_player_settings', $settings );
171
 
172
  <style type="text/css">
173
  html,
174
- body {
 
175
  width: 100%;
176
  height: 100%;
177
  margin: 0;
@@ -179,10 +179,6 @@ $settings = apply_filters( 'aiovg_player_settings', $settings );
179
  overflow: hidden;
180
  }
181
 
182
- .video-js.vjs-fluid {
183
- height: 100%;
184
- }
185
-
186
  .video-js .vjs-current-time,
187
  .vjs-no-flex .vjs-current-time,
188
  .video-js .vjs-duration,
88
 
89
  // Player Settings
90
  $settings = array(
 
91
  'controlBar' => array(),
92
  'autoplay' => isset( $_GET['autoplay'] ) ? (int) $_GET['autoplay'] : (int) $player_settings['autoplay'],
93
  'muted' => isset( $_GET['muted'] ) ? (int) $_GET['muted'] : (int) $player_settings['muted'],
170
 
171
  <style type="text/css">
172
  html,
173
+ body,
174
+ .video-js {
175
  width: 100%;
176
  height: 100%;
177
  margin: 0;
179
  overflow: hidden;
180
  }
181
 
 
 
 
 
182
  .video-js .vjs-current-time,
183
  .vjs-no-flex .vjs-current-time,
184
  .video-js .vjs-duration,