Feeds for YouTube (YouTube video, channel, and gallery plugin) - Version 2.0.2

Version Description

  • Fix: Fixed a conflict with the All in One SEO plugin causing menu tabs to not work properly.
Download this release

Release Info

Developer Craig at Smash Balloon
Plugin Icon 128x128 Feeds for YouTube (YouTube video, channel, and gallery plugin)
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

README.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Feeds for YouTube (YouTube video, channel, and gallery plugin) ===
2
  Author: Smash Balloon
3
- Contributors: smashballoon, craig-at-smash-balloon
4
  Support Website: http://smashballoon/youtube-feed/
5
  Tags: YouTube, YouTube feed, YouTube widget, YouTube channel, YouTube gallery
6
- Requires at least: 3.4
7
  Tested up to: 6.0
8
- Stable tag: 2.0.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -162,6 +162,9 @@ By default, the plugin retrieves new videos for your YouTube gallery once every
162
  6. Embed your feed using a shortcode you can copy and paste after you are done creating
163
 
164
  == Changelog ==
 
 
 
165
  = 2.0.1 =
166
  * Tweak: Improved the user experience to avoid confusion over connecting an account when creating a new feed.
167
  * Fix: Fixed deprecation warnings when using PHP 8.0+.
1
  === Feeds for YouTube (YouTube video, channel, and gallery plugin) ===
2
  Author: Smash Balloon
3
+ Contributors: smashballoon, craig-at-smash-balloon, am, smub
4
  Support Website: http://smashballoon/youtube-feed/
5
  Tags: YouTube, YouTube feed, YouTube widget, YouTube channel, YouTube gallery
6
+ Requires at least: 4.1
7
  Tested up to: 6.0
8
+ Stable tag: 2.0.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
162
  6. Embed your feed using a shortcode you can copy and paste after you are done creating
163
 
164
  == Changelog ==
165
+ = 2.0.2 =
166
+ * Fix: Fixed a conflict with the All in One SEO plugin causing menu tabs to not work properly.
167
+
168
  = 2.0.1 =
169
  * Tweak: Improved the user experience to avoid confusion over connecting an account when creating a new feed.
170
  * Fix: Fixed deprecation warnings when using PHP 8.0+.
inc/Services/Admin/AssetsService.php CHANGED
@@ -14,6 +14,9 @@ class AssetsService extends ServiceProvider {
14
  }
15
 
16
  public function enqueue_vue_assets() {
 
 
 
17
  wp_enqueue_script(
18
  'feed-builder-vue',
19
  'https://cdn.jsdelivr.net/npm/vue@2.6.12',
14
  }
15
 
16
  public function enqueue_vue_assets() {
17
+ if ( ! sby_is_admin_page() ) {
18
+ return;
19
+ }
20
  wp_enqueue_script(
21
  'feed-builder-vue',
22
  'https://cdn.jsdelivr.net/npm/vue@2.6.12',
youtube-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Feeds for YouTube
4
  Plugin URI: http://smashballoon.com/youtube-feed
5
  Description: The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.
6
- Version: 2.0.1
7
  Author: Smash Balloon YouTube Team
8
  Author URI: http://smashballoon.com/
9
  Text Domain: feeds-for-youtube
@@ -56,7 +56,7 @@ if ( ! defined( 'SBY_PLUGIN_EDD_NAME' ) ) {
56
  define( 'SBY_PLUGIN_EDD_NAME', 'YouTube Feed Pro Personal' );
57
  }
58
  if ( ! defined( 'SBYVER' ) ) {
59
- define( 'SBYVER', '2.0.1' );
60
  }
61
  if ( ! defined( 'SBY_DBVERSION' ) ) {
62
  define( 'SBY_DBVERSION', '2.0' );
3
  Plugin Name: Feeds for YouTube
4
  Plugin URI: http://smashballoon.com/youtube-feed
5
  Description: The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.
6
+ Version: 2.0.2
7
  Author: Smash Balloon YouTube Team
8
  Author URI: http://smashballoon.com/
9
  Text Domain: feeds-for-youtube
56
  define( 'SBY_PLUGIN_EDD_NAME', 'YouTube Feed Pro Personal' );
57
  }
58
  if ( ! defined( 'SBYVER' ) ) {
59
+ define( 'SBYVER', '2.0.2' );
60
  }
61
  if ( ! defined( 'SBY_DBVERSION' ) ) {
62
  define( 'SBY_DBVERSION', '2.0' );