Version Description
- Released 04/22/2021
- Fixed a bug in the PowerPress Network area
Download this release
Release Info
Developer | benbeecroft |
Plugin | PowerPress Podcasting plugin by Blubrry |
Version | 8.5.7 |
Comparing to | |
See all releases |
Code changes from version 8.5.6 to 8.5.7
- powerpress-network.php +4 -22
- powerpress.php +2 -2
- readme.txt +5 -1
powerpress-network.php
CHANGED
@@ -19,28 +19,10 @@ class PowerPressNetwork
|
|
19 |
|
20 |
function __construct($parent_slug)
|
21 |
{
|
22 |
-
$
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
$this->apiBus = new PowerpressNetworkDataBus();
|
27 |
-
add_action('admin_menu', array($this, 'checkUpdateProgram'));
|
28 |
-
}
|
29 |
-
else {
|
30 |
-
if (in_array('powerpress-network/powerpress-network.php',$pluginList)) {
|
31 |
-
function sample_admin_notice__success() {
|
32 |
-
?>
|
33 |
-
<div class="notice notice-error">
|
34 |
-
<p><?php _e( 'WARNING: PowerPress Network will not work with PowerPress not active.' ); ?></p>
|
35 |
-
</div>
|
36 |
-
<?php
|
37 |
-
}
|
38 |
-
add_action( 'admin_notices', 'sample_admin_notice__success' );
|
39 |
-
}
|
40 |
-
else {
|
41 |
-
die("PowerPress Network plugin not activated - must first activate PowerPress.");
|
42 |
-
}
|
43 |
-
}
|
44 |
}
|
45 |
|
46 |
function init()
|
19 |
|
20 |
function __construct($parent_slug)
|
21 |
{
|
22 |
+
$this->parent_slug = $parent_slug;
|
23 |
+
$this->init();
|
24 |
+
$this->apiBus = new PowerpressNetworkDataBus();
|
25 |
+
add_action('admin_menu', array($this, 'checkUpdateProgram'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
}
|
27 |
|
28 |
function init()
|
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.5.
|
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.5.
|
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.5.7
|
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.5.7' );
|
40 |
|
41 |
// Translation support:
|
42 |
if ( !defined('POWERPRESS_ABSPATH') )
|
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.7
|
7 |
-
Stable tag: 8.5.
|
8 |
Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
|
9 |
License: GPLv2 or later
|
10 |
|
@@ -184,6 +184,10 @@ If you are a fan of PowerPress, we would greatly appreciate it if you could take
|
|
184 |
|
185 |
== Changelog ==
|
186 |
|
|
|
|
|
|
|
|
|
187 |
= 8.5.6 =
|
188 |
* Released 04/14/2021
|
189 |
* Fixed Create New Episode button for Post Type feeds
|
4 |
Requires at least: 3.6
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 8.5.7
|
8 |
Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
|
9 |
License: GPLv2 or later
|
10 |
|
184 |
|
185 |
== Changelog ==
|
186 |
|
187 |
+
= 8.5.7 =
|
188 |
+
* Released 04/22/2021
|
189 |
+
* Fixed a bug in the PowerPress Network area
|
190 |
+
|
191 |
= 8.5.6 =
|
192 |
* Released 04/14/2021
|
193 |
* Fixed Create New Episode button for Post Type feeds
|