Version Description
- Bug: One of the files was corrupt in the previous release - this correct is. Sorry :(
Download this release
Release Info
| Developer | dartiss |
| Plugin | |
| Version | 3.3.2 |
| Comparing to | |
| See all releases | |
Code changes from version 3.3.1 to 3.3.2
- includes/admin-config.php +4 -4
- readme.txt +7 -1
- youtube-embed.php +2 -2
includes/admin-config.php
CHANGED
|
@@ -82,13 +82,13 @@ function vye_menu_initialise() {
|
|
| 82 |
|
| 83 |
$menu_icon = 'dashicons-video-alt3';
|
| 84 |
|
| 85 |
-
add_menu_page( __( 'About YouTube Embed', 'youtube-embed' ), __( 'YouTube', 'youtube-embed' ), $menu_access, '
|
| 86 |
|
| 87 |
// Add options sub-menu
|
| 88 |
|
| 89 |
global $vye_options_hook;
|
| 90 |
|
| 91 |
-
$vye_options_hook = add_submenu_page( '
|
| 92 |
|
| 93 |
add_action( 'load-' . $vye_options_hook, 'vye_add_options_help' );
|
| 94 |
|
|
@@ -96,7 +96,7 @@ function vye_menu_initialise() {
|
|
| 96 |
|
| 97 |
global $vye_profiles_hook;
|
| 98 |
|
| 99 |
-
$vye_profiles_hook = add_submenu_page( '
|
| 100 |
|
| 101 |
add_action( 'load-' . $vye_profiles_hook, 'vye_add_profiles_help' );
|
| 102 |
|
|
@@ -104,7 +104,7 @@ function vye_menu_initialise() {
|
|
| 104 |
|
| 105 |
global $vye_lists_hook;
|
| 106 |
|
| 107 |
-
$vye_lists_hook = add_submenu_page( '
|
| 108 |
|
| 109 |
add_action( 'load-' . $vye_lists_hook, 'vye_add_lists_help' );
|
| 110 |
|
| 82 |
|
| 83 |
$menu_icon = 'dashicons-video-alt3';
|
| 84 |
|
| 85 |
+
add_menu_page( __( 'About YouTube Embed', 'youtube-embed' ), __( 'YouTube', 'youtube-embed' ), $menu_access, 'general-options', 'vye_general_options', $menu_icon, 12 );
|
| 86 |
|
| 87 |
// Add options sub-menu
|
| 88 |
|
| 89 |
global $vye_options_hook;
|
| 90 |
|
| 91 |
+
$vye_options_hook = add_submenu_page( 'general-options', __( 'YouTube Embed Options', 'youtube-embed' ), __( 'Options', 'youtube-embed' ), $menu_access, 'general-options', 'vye_general_options' );
|
| 92 |
|
| 93 |
add_action( 'load-' . $vye_options_hook, 'vye_add_options_help' );
|
| 94 |
|
| 96 |
|
| 97 |
global $vye_profiles_hook;
|
| 98 |
|
| 99 |
+
$vye_profiles_hook = add_submenu_page( 'general-options', __( 'YouTube Embed Profiles', 'youtube-embed' ), __( 'Profiles', 'youtube-embed' ), $menu_access, 'profile-options', 'vye_profile_options' );
|
| 100 |
|
| 101 |
add_action( 'load-' . $vye_profiles_hook, 'vye_add_profiles_help' );
|
| 102 |
|
| 104 |
|
| 105 |
global $vye_lists_hook;
|
| 106 |
|
| 107 |
+
$vye_lists_hook = add_submenu_page( 'general-options', __( 'YouTube Embed Lists', 'youtube-embed' ), __( 'Lists', 'youtube-embed' ), $menu_access, 'list-options', 'vye_list_options' );
|
| 108 |
|
| 109 |
add_action( 'load-' . $vye_lists_hook, 'vye_add_lists_help' );
|
| 110 |
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://artiss.co.uk/donate
|
|
| 4 |
Tags: annotations, artiss, chromecast, comments, download, embed, embedding, embedplus, flash, flv, hd, iframe, media, play, playlist, profile, responsive, seo, url, video, widget, youtube, youtuber
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.1.1
|
| 7 |
-
Stable tag: 3.3.
|
| 8 |
|
| 9 |
A simple to use method of embedding YouTube videos into your posts and pages but with powerful features for those that need them.
|
| 10 |
|
|
@@ -481,6 +481,9 @@ Although I attempt to keep with PHP 4 compatibility there are no guarantees of t
|
|
| 481 |
|
| 482 |
== Changelog ==
|
| 483 |
|
|
|
|
|
|
|
|
|
|
| 484 |
= 3.3.1 =
|
| 485 |
* Maintenance: Remove reference to Google API, as videos are now not displaying as a result of v2 being retired. Will update the plugin more fully in future release
|
| 486 |
|
|
@@ -766,6 +769,9 @@ Although I attempt to keep with PHP 4 compatibility there are no guarantees of t
|
|
| 766 |
|
| 767 |
== Upgrade Notice ==
|
| 768 |
|
|
|
|
|
|
|
|
|
|
| 769 |
= 3.3.1 =
|
| 770 |
* Urgent fix to get videos displaying. Alternatively, switch off API in Options screen.
|
| 771 |
|
| 4 |
Tags: annotations, artiss, chromecast, comments, download, embed, embedding, embedplus, flash, flv, hd, iframe, media, play, playlist, profile, responsive, seo, url, video, widget, youtube, youtuber
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.1.1
|
| 7 |
+
Stable tag: 3.3.2
|
| 8 |
|
| 9 |
A simple to use method of embedding YouTube videos into your posts and pages but with powerful features for those that need them.
|
| 10 |
|
| 481 |
|
| 482 |
== Changelog ==
|
| 483 |
|
| 484 |
+
= 3.3.2 =
|
| 485 |
+
* Bug: One of the files was corrupt in the previous release - this correct is. Sorry :(
|
| 486 |
+
|
| 487 |
= 3.3.1 =
|
| 488 |
* Maintenance: Remove reference to Google API, as videos are now not displaying as a result of v2 being retired. Will update the plugin more fully in future release
|
| 489 |
|
| 769 |
|
| 770 |
== Upgrade Notice ==
|
| 771 |
|
| 772 |
+
= 3.3.2 =
|
| 773 |
+
* An urgent fix to the urgent fix, due to a corrupt file
|
| 774 |
+
|
| 775 |
= 3.3.1 =
|
| 776 |
* Urgent fix to get videos displaying. Alternatively, switch off API in Options screen.
|
| 777 |
|
youtube-embed.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: YouTube Embed
|
| 4 |
Plugin URI: https://wordpress.org/plugins/youtube-embed/
|
| 5 |
Description: Embed YouTube Videos in WordPress
|
| 6 |
-
Version: 3.3.
|
| 7 |
Author: David Artiss
|
| 8 |
Author URI: http://www.artiss.co.uk
|
| 9 |
*/
|
|
@@ -17,7 +17,7 @@ Author URI: http://www.artiss.co.uk
|
|
| 17 |
* @since 2.0
|
| 18 |
*/
|
| 19 |
|
| 20 |
-
define( 'youtube_embed_version', '3.3.
|
| 21 |
|
| 22 |
$functions_dir = WP_PLUGIN_DIR . '/youtube-embed/includes/';
|
| 23 |
|
| 3 |
Plugin Name: YouTube Embed
|
| 4 |
Plugin URI: https://wordpress.org/plugins/youtube-embed/
|
| 5 |
Description: Embed YouTube Videos in WordPress
|
| 6 |
+
Version: 3.3.2
|
| 7 |
Author: David Artiss
|
| 8 |
Author URI: http://www.artiss.co.uk
|
| 9 |
*/
|
| 17 |
* @since 2.0
|
| 18 |
*/
|
| 19 |
|
| 20 |
+
define( 'youtube_embed_version', '3.3.2' );
|
| 21 |
|
| 22 |
$functions_dir = WP_PLUGIN_DIR . '/youtube-embed/includes/';
|
| 23 |
|
