Version Description
- Released 03/12/2021
- Podcast Index namespace-related bugfix
Download this release
Release Info
Developer | benbeecroft |
Plugin | PowerPress Podcasting plugin by Blubrry |
Version | 8.5.2 |
Comparing to | |
See all releases |
Code changes from version 8.5.1 to 8.5.2
- feed-podcast.php +0 -1
- powerpress.php +5 -1
- readme.txt +5 -1
feed-podcast.php
CHANGED
@@ -114,7 +114,6 @@ echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'."\n";
|
|
114 |
xmlns:atom="http://www.w3.org/2005/Atom"
|
115 |
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
116 |
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
|
117 |
-
xmlns:podcast="https://github.com/Podcastindex-org/podcast-namespace/blob/main/docs/1.0.md"
|
118 |
<?php do_action('rss2_ns'.$FeedActionHook); ?>
|
119 |
>
|
120 |
<channel>
|
114 |
xmlns:atom="http://www.w3.org/2005/Atom"
|
115 |
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
116 |
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
|
|
|
117 |
<?php do_action('rss2_ns'.$FeedActionHook); ?>
|
118 |
>
|
119 |
<channel>
|
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
|
@@ -502,6 +502,10 @@ function powerpress_rss2_ns()
|
|
502 |
|
503 |
// Okay, lets add the namespace
|
504 |
echo 'xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"'.PHP_EOL;
|
|
|
|
|
|
|
|
|
505 |
if( !defined('POWERPRESS_RAWVOICE_RSS') || POWERPRESS_RAWVOICE_RSS != false )
|
506 |
{
|
507 |
echo 'xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"'.PHP_EOL;
|
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.2
|
7 |
Author: Blubrry
|
8 |
Author URI: https://blubrry.com/
|
9 |
Requires at least: 3.6
|
502 |
|
503 |
// Okay, lets add the namespace
|
504 |
echo 'xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"'.PHP_EOL;
|
505 |
+
|
506 |
+
// Add the Podcast Index namespace
|
507 |
+
echo 'xmlns:podcast="https://github.com/Podcastindex-org/podcast-namespace/blob/main/docs/1.0.md'.PHP_EOL;
|
508 |
+
|
509 |
if( !defined('POWERPRESS_RAWVOICE_RSS') || POWERPRESS_RAWVOICE_RSS != false )
|
510 |
{
|
511 |
echo 'xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"'.PHP_EOL;
|
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 |
|
@@ -186,6 +186,10 @@ If you are a fan of PowerPress, we would greatly appreciate it if you could take
|
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
|
|
189 |
= 8.5.1 =
|
190 |
* Released 03/10/2021
|
191 |
* Bugfix--added Podcast Index namespace
|
4 |
Requires at least: 3.6
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 8.5.2
|
8 |
Donate link: https://create.blubrry.com/resources/podcast-media-hosting/
|
9 |
License: GPLv2 or later
|
10 |
|
186 |
|
187 |
== Changelog ==
|
188 |
|
189 |
+
= 8.5.2 =
|
190 |
+
* Released 03/12/2021
|
191 |
+
* Podcast Index namespace-related bugfix
|
192 |
+
|
193 |
= 8.5.1 =
|
194 |
* Released 03/10/2021
|
195 |
* Bugfix--added Podcast Index namespace
|