Version Description
- Fix: Unfortunately, there were some bugs in the 1.1.0 release and this is an immediate release which addresses those issues.
Download this release
Release Info
Developer | plugins360 |
Plugin | All-in-One Video Gallery |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.2.0
- README.txt +9 -1
- all-in-one-video-gallery.php +2 -2
- includes/functions.php +1 -0
README.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: video, player, gallery, mp4, webm, ogv, youtube, vimeo, hls, dash, adaptiv
|
|
6 |
Requires at least: 4.4.0
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.3.0
|
9 |
-
Stable tag: 1.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -82,6 +82,10 @@ Most likely rewrite rules were not registered properly for some reason. Go to "W
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
85 |
= 1.1.0 =
|
86 |
|
87 |
* New: Added support for Facebook videos.
|
@@ -92,6 +96,10 @@ Most likely rewrite rules were not registered properly for some reason. Go to "W
|
|
92 |
|
93 |
== Upgrade Notice ==
|
94 |
|
|
|
|
|
|
|
|
|
95 |
= 1.1.0 =
|
96 |
|
97 |
* New: Added support for Facebook videos.
|
6 |
Requires at least: 4.4.0
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.3.0
|
9 |
+
Stable tag: 1.2.0
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 1.2.0 =
|
86 |
+
|
87 |
+
* Fix: Unfortunately, there were some bugs in the 1.1.0 release and this is an immediate release which addresses those issues.
|
88 |
+
|
89 |
= 1.1.0 =
|
90 |
|
91 |
* New: Added support for Facebook videos.
|
96 |
|
97 |
== Upgrade Notice ==
|
98 |
|
99 |
+
= 1.2.0 =
|
100 |
+
|
101 |
+
* Fix: Unfortunately, there were some bugs in the 1.1.0 release and this is an immediate release which addresses those issues.
|
102 |
+
|
103 |
= 1.1.0 =
|
104 |
|
105 |
* New: Added support for Facebook videos.
|
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
|
13 |
* Description: Responsive & Lightweight Video gallery plugin. HTML5 with FLASH fallbacks. Supports any browser & video formats such as MP4, WebM, OGV and embeddable players like YouTube, Vimeo, Facebook, etc.
|
14 |
-
* Version: 1.
|
15 |
* Author: Team Plugins360
|
16 |
* License: GPL-2.0+
|
17 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
@@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
26 |
|
27 |
// The current version of the plugin
|
28 |
if ( ! defined( 'AIOVG_PLUGIN_VERSION' ) ) {
|
29 |
-
define( 'AIOVG_PLUGIN_VERSION', '1.
|
30 |
}
|
31 |
|
32 |
// The unique identifier of the plugin
|
11 |
* Plugin Name: All in One Video Gallery
|
12 |
* Plugin URI: https://plugins360.com
|
13 |
* Description: Responsive & Lightweight Video gallery plugin. HTML5 with FLASH fallbacks. Supports any browser & video formats such as MP4, WebM, OGV and embeddable players like YouTube, Vimeo, Facebook, etc.
|
14 |
+
* Version: 1.2.0
|
15 |
* Author: Team Plugins360
|
16 |
* License: GPL-2.0+
|
17 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
26 |
|
27 |
// The current version of the plugin
|
28 |
if ( ! defined( 'AIOVG_PLUGIN_VERSION' ) ) {
|
29 |
+
define( 'AIOVG_PLUGIN_VERSION', '1.2.0' );
|
30 |
}
|
31 |
|
32 |
// The unique identifier of the plugin
|
includes/functions.php
CHANGED
@@ -470,6 +470,7 @@ function aiovg_get_player_page_url( $post_id = 0, $atts = array() ) {
|
|
470 |
case 'ogv':
|
471 |
case 'youtube':
|
472 |
case 'vimeo':
|
|
|
473 |
case 'poster':
|
474 |
$query_args[ $key ] = urlencode( $atts[ $key ] );
|
475 |
break;
|
470 |
case 'ogv':
|
471 |
case 'youtube':
|
472 |
case 'vimeo':
|
473 |
+
case 'facebook':
|
474 |
case 'poster':
|
475 |
$query_args[ $key ] = urlencode( $atts[ $key ] );
|
476 |
break;
|