Version Description
- Video lightbox is now compatible with WordPress 4.6.
Download this release
Release Info
Developer | wptipsntricks |
Plugin | WP Video Lightbox |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.1 to 1.8.2
- readme.txt +6 -3
- wp-video-lightbox.php +2 -2
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP Video Lightbox ===
|
2 |
Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks
|
3 |
Donate link: https://www.tipsandtricks-hq.com/
|
4 |
-
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
@@ -114,6 +114,9 @@ None
|
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
117 |
= 1.8.1 =
|
118 |
* Video lightbox now includes the minified version of the prettyPhoto library.
|
119 |
|
1 |
=== WP Video Lightbox ===
|
2 |
Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks
|
3 |
Donate link: https://www.tipsandtricks-hq.com/
|
4 |
+
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 1.8.2
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= 1.8.2 =
|
118 |
+
* Video lightbox is now compatible with WordPress 4.6.
|
119 |
+
|
120 |
= 1.8.1 =
|
121 |
* Video lightbox now includes the minified version of the prettyPhoto library.
|
122 |
|
wp-video-lightbox.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
-
Version: 1.8.
|
5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: https://www.tipsandtricks-hq.com/
|
@@ -15,7 +15,7 @@ if (!class_exists('WP_Video_Lightbox'))
|
|
15 |
{
|
16 |
class WP_Video_Lightbox
|
17 |
{
|
18 |
-
var $version = '1.8.
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
+
Version: 1.8.2
|
5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: https://www.tipsandtricks-hq.com/
|
15 |
{
|
16 |
class WP_Video_Lightbox
|
17 |
{
|
18 |
+
var $version = '1.8.2';
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|