Version Description
- YouTube video can now be loaded over https
Download this release
Release Info
Developer | wptipsntricks |
Plugin | WP Video Lightbox |
Version | 1.6.6 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 1.6.6
- readme.txt +11 -1
- wp-video-lightbox.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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: 3.8
|
7 |
-
Stable tag: 1.6.
|
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.
|
@@ -59,6 +59,13 @@ Once you have installed the plugin you can configure some options to customize t
|
|
59 |
* Keyboard shortcuts: Set to false if you open forms inside prettyPhoto [default: true]
|
60 |
* IE6 fallback: compatibility fallback for IE6 [default: true]
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
For video tutorial, screenshots, detailed documentation, support and updates, please visit: [WP Video Lightbox plugin page](http://www.tipsandtricks-hq.com/wordpress-video-lightbox-plugin-display-videos-in-a-fancy-lightbox-overlay-2700)
|
63 |
|
64 |
== Usage ==
|
@@ -96,6 +103,9 @@ None
|
|
96 |
|
97 |
== Changelog ==
|
98 |
|
|
|
|
|
|
|
99 |
= 1.6.5 =
|
100 |
* fixed a bug in the plugin where default options were not set for automatic upgrade
|
101 |
|
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: 3.8
|
7 |
+
Stable tag: 1.6.6
|
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.
|
59 |
* Keyboard shortcuts: Set to false if you open forms inside prettyPhoto [default: true]
|
60 |
* IE6 fallback: compatibility fallback for IE6 [default: true]
|
61 |
|
62 |
+
= Additional Features =
|
63 |
+
|
64 |
+
* Automatically retrieve the thumbnail for your video and embed in lightbox
|
65 |
+
* Load YouTube video over https. This is great if you have SSL installed on your site
|
66 |
+
* Disable suggested videos at the end of a YouTube video
|
67 |
+
* Flexiblity of using both shortcode/html code to pop up media in lightbox.
|
68 |
+
|
69 |
For video tutorial, screenshots, detailed documentation, support and updates, please visit: [WP Video Lightbox plugin page](http://www.tipsandtricks-hq.com/wordpress-video-lightbox-plugin-display-videos-in-a-fancy-lightbox-overlay-2700)
|
70 |
|
71 |
== Usage ==
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= 1.6.6 =
|
107 |
+
* YouTube video can now be loaded over https
|
108 |
+
|
109 |
= 1.6.5 =
|
110 |
* fixed a bug in the plugin where default options were not set for automatic upgrade
|
111 |
|
wp-video-lightbox.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
-
Version: 1.6.
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|
@@ -13,7 +13,7 @@ if (!class_exists('WP_Video_Lightbox'))
|
|
13 |
{
|
14 |
class WP_Video_Lightbox
|
15 |
{
|
16 |
-
var $version = '1.6.
|
17 |
var $db_version = '1.0';
|
18 |
var $plugin_url;
|
19 |
var $plugin_path;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
+
Version: 1.6.6
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|
13 |
{
|
14 |
class WP_Video_Lightbox
|
15 |
{
|
16 |
+
var $version = '1.6.6';
|
17 |
var $db_version = '1.0';
|
18 |
var $plugin_url;
|
19 |
var $plugin_path;
|