Version Description
- March 5, 2013 =
- Fixed missing ) in uninstall.php
Download this release
Release Info
Developer | kylegilman |
Plugin | Video Embed & Thumbnail Generator |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.1.1
- readme.txt +3 -0
- uninstall.php +1 -1
- video-embed-thumbnail-generator.php +1 -1
readme.txt
CHANGED
@@ -127,6 +127,9 @@ Use the "Embed from URL" tab. Use the format http://username:password@yourdomain
|
|
127 |
|
128 |
== Changelog ==
|
129 |
|
|
|
|
|
|
|
130 |
= 3.1 - January 30, 2013 =
|
131 |
* Added video watermark overlay option. (Video.js only)
|
132 |
* Changed front-end CSS file name to kgvid_styles.css and made it always available, not just when galleries are on the page.
|
127 |
|
128 |
== Changelog ==
|
129 |
|
130 |
+
= 3.1.1 - March 5, 2013 =
|
131 |
+
* Fixed missing ) in uninstall.php
|
132 |
+
|
133 |
= 3.1 - January 30, 2013 =
|
134 |
* Added video watermark overlay option. (Video.js only)
|
135 |
* Changed front-end CSS file name to kgvid_styles.css and made it always available, not just when galleries are on the page.
|
uninstall.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
<?php
|
2 |
-
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) { exit (); }
|
3 |
delete_option('kgvid_video_embed_options');
|
4 |
?>
|
1 |
<?php
|
2 |
+
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit (); }
|
3 |
delete_option('kgvid_video_embed_options');
|
4 |
?>
|
video-embed-thumbnail-generator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Video Embed & Thumbnail Generator
|
4 |
Plugin URI: http://www.kylegilman.net/2011/01/18/video-embed-thumbnail-generator-wordpress-plugin/
|
5 |
Description: Generates thumbnails, HTML5-compliant videos, and embed codes for locally hosted videos. Requires FFMPEG for thumbnails and encodes. <a href="options-general.php?page=video-embed-thumbnail-generator/video-embed-thumbnail-generator.php">Settings</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=kylegilman@gmail.com&item_name=Video%20Embed%20And%20Thumbnail%20Generator%20Plugin%20Donation/">Donate</a>
|
6 |
-
Version: 3.1
|
7 |
Author: Kyle Gilman
|
8 |
Author URI: http://www.kylegilman.net/
|
9 |
|
3 |
Plugin Name: Video Embed & Thumbnail Generator
|
4 |
Plugin URI: http://www.kylegilman.net/2011/01/18/video-embed-thumbnail-generator-wordpress-plugin/
|
5 |
Description: Generates thumbnails, HTML5-compliant videos, and embed codes for locally hosted videos. Requires FFMPEG for thumbnails and encodes. <a href="options-general.php?page=video-embed-thumbnail-generator/video-embed-thumbnail-generator.php">Settings</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=kylegilman@gmail.com&item_name=Video%20Embed%20And%20Thumbnail%20Generator%20Plugin%20Donation/">Donate</a>
|
6 |
+
Version: 3.1.1
|
7 |
Author: Kyle Gilman
|
8 |
Author URI: http://www.kylegilman.net/
|
9 |
|