Version Description
- Released 05/19/2021
- Small bugfix from today's earlier release
Download this release
Release Info
Developer | benbeecroft |
Plugin | PowerPress Podcasting plugin by Blubrry |
Version | 8.6.4 |
Comparing to | |
See all releases |
Code changes from version 8.6.3 to 8.6.4
- powerpress.php +2 -2
- powerpressadmin-jquery.php +2 -2
- readme.txt +5 -1
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.6.
|
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.6.
|
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.6.4
|
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.6.4' );
|
40 |
|
41 |
// Translation support:
|
42 |
if ( !defined('POWERPRESS_ABSPATH') )
|
powerpressadmin-jquery.php
CHANGED
@@ -210,7 +210,7 @@ function powerpress_admin_jquery_init()
|
|
210 |
$api_url_array = powerpress_get_api_array();
|
211 |
if ($creds) {
|
212 |
$accessToken = powerpress_getAccessToken();
|
213 |
-
$req_url = sprintf('/2/media/%s/index.json?quota=true&wp_admin_url
|
214 |
$req_url .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '&' . POWERPRESS_BLUBRRY_API_QSA : '');
|
215 |
$req_url_programs = sprintf('/2/service/index.json?cache=' . md5( rand(0, 999) . time() ));
|
216 |
$req_url_programs .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '?' . POWERPRESS_BLUBRRY_API_QSA : '');
|
@@ -218,7 +218,7 @@ function powerpress_admin_jquery_init()
|
|
218 |
$results_programs = $auth->api($accessToken, $req_url_programs);
|
219 |
} else {
|
220 |
foreach ($api_url_array as $index => $api_url) {
|
221 |
-
$req_url = sprintf('%s/media/%s/index.json?quota=true&wp_admin_url
|
222 |
$req_url .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '&' . POWERPRESS_BLUBRRY_API_QSA : '');
|
223 |
$req_url_programs = sprintf('%s/service/index.json?cache=' . md5( rand(0, 999) . time() ), rtrim($api_url, '/'));
|
224 |
$req_url_programs .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '?' . POWERPRESS_BLUBRRY_API_QSA : '');
|
210 |
$api_url_array = powerpress_get_api_array();
|
211 |
if ($creds) {
|
212 |
$accessToken = powerpress_getAccessToken();
|
213 |
+
$req_url = sprintf('/2/media/%s/index.json?quota=true&wp_admin_url=%s&published=true&cache=' . md5( rand(0, 999) . time() ), $blubrryProgramKeyword, urlencode(admin_url('admin.php')));
|
214 |
$req_url .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '&' . POWERPRESS_BLUBRRY_API_QSA : '');
|
215 |
$req_url_programs = sprintf('/2/service/index.json?cache=' . md5( rand(0, 999) . time() ));
|
216 |
$req_url_programs .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '?' . POWERPRESS_BLUBRRY_API_QSA : '');
|
218 |
$results_programs = $auth->api($accessToken, $req_url_programs);
|
219 |
} else {
|
220 |
foreach ($api_url_array as $index => $api_url) {
|
221 |
+
$req_url = sprintf('%s/media/%s/index.json?quota=true&wp_admin_url=%s&published=true&cache=' . md5( rand(0, 999) . time() ), rtrim($api_url, '/'), $blubrryProgramKeyword, urlencode(admin_url('admin.php')));
|
222 |
$req_url .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '&' . POWERPRESS_BLUBRRY_API_QSA : '');
|
223 |
$req_url_programs = sprintf('%s/service/index.json?cache=' . md5( rand(0, 999) . time() ), rtrim($api_url, '/'));
|
224 |
$req_url_programs .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '?' . POWERPRESS_BLUBRRY_API_QSA : '');
|
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.6.
|
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.6.3 =
|
188 |
* Released 05/19/2021
|
189 |
* Small bugfixes
|
4 |
Requires at least: 3.6
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 8.6.4
|
8 |
Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
|
9 |
License: GPLv2 or later
|
10 |
|
184 |
|
185 |
== Changelog ==
|
186 |
|
187 |
+
= 8.6.4 =
|
188 |
+
* Released 05/19/2021
|
189 |
+
* Small bugfix from today's earlier release
|
190 |
+
|
191 |
= 8.6.3 =
|
192 |
* Released 05/19/2021
|
193 |
* Small bugfixes
|