PowerPress Podcasting plugin by Blubrry - Version 8.4.3

Version Description

  • Released 11/9/2020
  • Fixed text in podcast index subscribe link under player--previously said "Blubrry"
  • Re-added Unlink option if there is an error in Connected to Blubrry Account menu
Download this release

Release Info

Developer benbeecroft
Plugin Icon 128x128 PowerPress Podcasting plugin by Blubrry
Version 8.4.3
Comparing to
See all releases

Code changes from version 8.4.2 to 8.4.3

powerpress-subscribe.php CHANGED
@@ -535,7 +535,7 @@ function powerpressplayer_link_subscribe_pre($content, $media_url, $ExtraData =
535
  if( !empty($SubscribeSettings['subscribe_feature_pcindex']) && !empty($SubscribeSettings['pcindex_url']) )
536
  {
537
  $SubscribeSettings['pcindex_url'] = trim($SubscribeSettings['pcindex_url']);
538
- $links_array[] = "<a href=\"". esc_attr($SubscribeSettings['pcindex_url'] ) ."\" class=\"powerpress_link_subscribe powerpress_link_subscribe_pcindex\" title=\"". __('Subscribe on Podcast Index', 'powerpress') ."\" rel=\"nofollow\">". __('Blubrry','powerpress') ."</a>".PHP_EOL_WEB;
539
  }
540
 
541
  if( !empty($SubscribeSettings['subscribe_feature_rss']) ) {
535
  if( !empty($SubscribeSettings['subscribe_feature_pcindex']) && !empty($SubscribeSettings['pcindex_url']) )
536
  {
537
  $SubscribeSettings['pcindex_url'] = trim($SubscribeSettings['pcindex_url']);
538
+ $links_array[] = "<a href=\"". esc_attr($SubscribeSettings['pcindex_url'] ) ."\" class=\"powerpress_link_subscribe powerpress_link_subscribe_pcindex\" title=\"". __('Subscribe on Podcast Index', 'powerpress') ."\" rel=\"nofollow\">". __('Podcast Index','powerpress') ."</a>".PHP_EOL_WEB;
539
  }
540
 
541
  if( !empty($SubscribeSettings['subscribe_feature_rss']) ) {
powerpress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Blubrry PowerPress
4
  Plugin URI: http://create.blubrry.com/resources/powerpress/
5
  Description: <a href="https://create.blubrry.com/resources/powerpress/" target="_blank">Blubrry PowerPress</a> is the No. 1 Podcasting plugin for WordPress. Developed by podcasters for podcasters; features include Simple and Advanced modes, multiple audio/video player options, subscribe to podcast tools, podcast SEO features, and more! Fully supports Apple Podcasts (previously iTunes), Google Podcasts, Spotify, Stitcher, and Blubrry Podcasting directories, as well as all podcast applications and clients.
6
- Version: 8.4.2
7
  Author: Blubrry
8
  Author URI: https://blubrry.com/
9
  Requires at least: 3.6
@@ -36,7 +36,7 @@ if( !function_exists('add_action') ) {
36
 
37
  // WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
38
 
39
- define('POWERPRESS_VERSION', '8.4.2' );
40
 
41
  // Translation support:
42
  if ( !defined('POWERPRESS_ABSPATH') )
3
  Plugin Name: Blubrry PowerPress
4
  Plugin URI: http://create.blubrry.com/resources/powerpress/
5
  Description: <a href="https://create.blubrry.com/resources/powerpress/" target="_blank">Blubrry PowerPress</a> is the No. 1 Podcasting plugin for WordPress. Developed by podcasters for podcasters; features include Simple and Advanced modes, multiple audio/video player options, subscribe to podcast tools, podcast SEO features, and more! Fully supports Apple Podcasts (previously iTunes), Google Podcasts, Spotify, Stitcher, and Blubrry Podcasting directories, as well as all podcast applications and clients.
6
+ Version: 8.4.3
7
  Author: Blubrry
8
  Author URI: https://blubrry.com/
9
  Requires at least: 3.6
36
 
37
  // WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
38
 
39
+ define('POWERPRESS_VERSION', '8.4.3' );
40
 
41
  // Translation support:
42
  if ( !defined('POWERPRESS_ABSPATH') )
powerpressadmin-jquery.php CHANGED
@@ -988,7 +988,6 @@ jQuery(document).ready(function($) {
988
  powerpress_page_message_add_notice(__("Error logging in", 'powerpress'));
989
  powerpress_page_message_print();
990
  }
991
- exit;
992
  } else {
993
  foreach ($results_programs as $null => $row) {
994
  $Programs[$row['program_keyword']] = $row['program_title'];
@@ -1001,6 +1000,7 @@ jQuery(document).ready(function($) {
1001
  <?php wp_nonce_field('powerpress-jquery-account-save'); ?>
1002
  <input type="hidden" name="action" value="powerpress-jquery-account-save" />
1003
  <div id="accountinfo">
 
1004
  <p>
1005
  <label for="blubrry_program_keyword"><?php echo __('Select Default Program', 'powerpress'); ?></label>
1006
  <select id="blubrry_program_keyword" name="Settings[blubrry_program_keyword]">
@@ -1019,6 +1019,7 @@ jQuery(document).ready(function($) {
1019
  <label for="blubrry_network_mode"><?php echo __('Multi-program mode (publish to multiple Blubrry Hosting Accounts)', 'powerpress') ?></label>
1020
  <input type="checkbox" id="blubrry_network_mode" value="1" name="Settings[network_mode]" <?php echo $Settings['network_mode'] == '1' ? 'checked' : ''; ?> />
1021
  </p>
 
1022
  <p>
1023
  <input type="submit" name="Save" value="<?php echo __('Save', 'powerpress'); ?>" />
1024
  <input type="button" name="Cancel" class="pp-plain-link" value="<?php echo __('Cancel', 'powerpress'); ?>" onclick="self.parent.tb_remove();" />
@@ -1026,9 +1027,10 @@ jQuery(document).ready(function($) {
1026
  </p>
1027
  </div>
1028
  </form>
1029
- <script type="text/javascript"><!--
1030
 
1031
 
 
1032
  jQuery(document).ready(function($) {
1033
  jQuery('#blubrry_network_mode').change( function(event) {
1034
  if(this.checked) {
@@ -1040,7 +1042,8 @@ jQuery(document).ready(function($) {
1040
 
1041
  } );
1042
  } );
1043
- //-->
 
1044
  </script><?php
1045
  powerpress_admin_jquery_footer();
1046
  exit;
988
  powerpress_page_message_add_notice(__("Error logging in", 'powerpress'));
989
  powerpress_page_message_print();
990
  }
 
991
  } else {
992
  foreach ($results_programs as $null => $row) {
993
  $Programs[$row['program_keyword']] = $row['program_title'];
1000
  <?php wp_nonce_field('powerpress-jquery-account-save'); ?>
1001
  <input type="hidden" name="action" value="powerpress-jquery-account-save" />
1002
  <div id="accountinfo">
1003
+ <?php if (count($Programs) > 0) { ?>
1004
  <p>
1005
  <label for="blubrry_program_keyword"><?php echo __('Select Default Program', 'powerpress'); ?></label>
1006
  <select id="blubrry_program_keyword" name="Settings[blubrry_program_keyword]">
1019
  <label for="blubrry_network_mode"><?php echo __('Multi-program mode (publish to multiple Blubrry Hosting Accounts)', 'powerpress') ?></label>
1020
  <input type="checkbox" id="blubrry_network_mode" value="1" name="Settings[network_mode]" <?php echo $Settings['network_mode'] == '1' ? 'checked' : ''; ?> />
1021
  </p>
1022
+ <?php } ?>
1023
  <p>
1024
  <input type="submit" name="Save" value="<?php echo __('Save', 'powerpress'); ?>" />
1025
  <input type="button" name="Cancel" class="pp-plain-link" value="<?php echo __('Cancel', 'powerpress'); ?>" onclick="self.parent.tb_remove();" />
1027
  </p>
1028
  </div>
1029
  </form>
1030
+ <script type="text/javascript">
1031
 
1032
 
1033
+ <?php if (count($Programs) > 0) { ?>
1034
  jQuery(document).ready(function($) {
1035
  jQuery('#blubrry_network_mode').change( function(event) {
1036
  if(this.checked) {
1042
 
1043
  } );
1044
  } );
1045
+
1046
+ <?php } ?>
1047
  </script><?php
1048
  powerpress_admin_jquery_footer();
1049
  exit;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: podcasting, podcast, podcaster, powerpress, itunes, apple, apple podcasts,
4
  Requires at least: 3.6
5
  Requires PHP: 5.2
6
  Tested up to: 5.5
7
- Stable tag: 8.4.2
8
  Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
9
  License: GPLv2 or later
10
 
@@ -236,6 +236,11 @@ To install Blubrry PowerPress manually, follow these steps:
236
  = Fan of PowerPress and want to show your support? =
237
  If you are a fan of PowerPress, we would greatly appreciate it if you could take a moment and [leave us a review on WordPress.org](https://wordpress.org/support/plugin/powerpress/reviews/?rate=5#new-post). Your support is greatly appreciated!
238
 
 
 
 
 
 
239
  = 8.4.2 =
240
  * Released 11/5/2020
241
  * Added subscribe links for Podcast Index
4
  Requires at least: 3.6
5
  Requires PHP: 5.2
6
  Tested up to: 5.5
7
+ Stable tag: 8.4.3
8
  Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
9
  License: GPLv2 or later
10
 
236
  = Fan of PowerPress and want to show your support? =
237
  If you are a fan of PowerPress, we would greatly appreciate it if you could take a moment and [leave us a review on WordPress.org](https://wordpress.org/support/plugin/powerpress/reviews/?rate=5#new-post). Your support is greatly appreciated!
238
 
239
+ = 8.4.3 =
240
+ * Released 11/9/2020
241
+ * Fixed text in podcast index subscribe link under player--previously said "Blubrry"
242
+ * Re-added Unlink option if there is an error in Connected to Blubrry Account menu
243
+
244
  = 8.4.2 =
245
  * Released 11/5/2020
246
  * Added subscribe links for Podcast Index