Version Description
- Fixed privacy option
- Supports new #! style Youtube URLs
Download this release
Release Info
| Developer | freediver |
| Plugin | |
| Version | 3.4.3 |
| Comparing to | |
| See all releases | |
Code changes from version 3.4.2 to 3.4.3
- readme.txt +3 -2
- smartyoutube.class.php +2 -2
- smartyoutube.php +2 -1
readme.txt
CHANGED
|
@@ -36,10 +36,11 @@ Plugin by Vladimir Prelovac. Looking for <a href="http://www.prelovac.com/vladim
|
|
| 36 |
|
| 37 |
== Changelog ==
|
| 38 |
|
| 39 |
-
= 3.4.
|
|
|
|
| 40 |
* Supports new #! style Youtube URLs
|
| 41 |
|
| 42 |
-
= 3.4.1=
|
| 43 |
* Fixed widget problem
|
| 44 |
|
| 45 |
= 3.4 =
|
| 36 |
|
| 37 |
== Changelog ==
|
| 38 |
|
| 39 |
+
= 3.4.3 =
|
| 40 |
+
* Fixed privacy option
|
| 41 |
* Supports new #! style Youtube URLs
|
| 42 |
|
| 43 |
+
= 3.4.1 =
|
| 44 |
* Fixed widget problem
|
| 45 |
|
| 46 |
= 3.4 =
|
smartyoutube.class.php
CHANGED
|
@@ -105,7 +105,7 @@ class SmartYouTube
|
|
| 105 |
$this->options['border'] = !isset($_POST['embedBorder']) ? 0 : 1;
|
| 106 |
$this->options['color'] = !isset($_POST['embedColor']) ? 'blank' : $_POST['embedColor'];
|
| 107 |
$this->options['autoplay'] = !isset($_POST['autoplay']) ? 0 : 1;
|
| 108 |
-
$this->options['privacy'] = !isset($_POST['
|
| 109 |
|
| 110 |
$this->options['posts'] = !isset($_POST['disp_posts']) ? 'off' : 'on';
|
| 111 |
$this->options['comments'] = !isset($_POST['disp_comments']) ? 'off' : 'on';
|
|
@@ -581,7 +581,7 @@ EOT;
|
|
| 581 |
'ann' => 'on',
|
| 582 |
'template' => '{video}',
|
| 583 |
'autoplay' => 0,
|
| 584 |
-
|
| 585 |
'wtext' => '',
|
| 586 |
'wtitle' => '',
|
| 587 |
);
|
| 105 |
$this->options['border'] = !isset($_POST['embedBorder']) ? 0 : 1;
|
| 106 |
$this->options['color'] = !isset($_POST['embedColor']) ? 'blank' : $_POST['embedColor'];
|
| 107 |
$this->options['autoplay'] = !isset($_POST['autoplay']) ? 0 : 1;
|
| 108 |
+
$this->options['privacy'] = !isset($_POST['disp_privacy']) ? 0 : 1;
|
| 109 |
|
| 110 |
$this->options['posts'] = !isset($_POST['disp_posts']) ? 'off' : 'on';
|
| 111 |
$this->options['comments'] = !isset($_POST['disp_comments']) ? 'off' : 'on';
|
| 581 |
'ann' => 'on',
|
| 582 |
'template' => '{video}',
|
| 583 |
'autoplay' => 0,
|
| 584 |
+
'privacy' => 0,
|
| 585 |
'wtext' => '',
|
| 586 |
'wtitle' => '',
|
| 587 |
);
|
smartyoutube.php
CHANGED
|
@@ -4,10 +4,11 @@ Plugin Name: Smart Youtube
|
|
| 4 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
|
| 5 |
Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
|
| 6 |
Author: Vladimir Prelovac
|
| 7 |
-
Version: 3.4.
|
| 8 |
Author URI: http://www.prelovac.com/vladimir/
|
| 9 |
|
| 10 |
Updates:
|
|
|
|
| 11 |
3.4.2 - Supports new #! style youtube urls
|
| 12 |
3.4.1 - Fixed widget
|
| 13 |
3.4 - Completely rewritten the plugin, added new HD video support, added video privacy option
|
| 4 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
|
| 5 |
Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
|
| 6 |
Author: Vladimir Prelovac
|
| 7 |
+
Version: 3.4.3
|
| 8 |
Author URI: http://www.prelovac.com/vladimir/
|
| 9 |
|
| 10 |
Updates:
|
| 11 |
+
3.4.3 - Fixed privacy option
|
| 12 |
3.4.2 - Supports new #! style youtube urls
|
| 13 |
3.4.1 - Fixed widget
|
| 14 |
3.4 - Completely rewritten the plugin, added new HD video support, added video privacy option
|
