Version Description
- Released on 8/31/2009
- Fixed array_unshift() for users in simple mode, bug created in 0.9.6 release.
- Fixed link to change from simple/advanced modes, bug created in 0.9.6 release.
- Fixed bug with changing Blubrry Services account email address.
Download this release
Release Info
Developer | amandato |
Plugin | PowerPress Podcasting plugin by Blubrry |
Version | 0.9.7 |
Comparing to | |
See all releases |
Code changes from version 0.9.6 to 0.9.7
- powerpress.php +4 -2
- powerpressadmin-jquery.php +1 -0
- powerpressadmin.php +2 -2
- readme.txt +7 -1
powerpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Blubrry PowerPress
|
4 |
Plugin URI: http://www.blubrry.com/powerpress/
|
5 |
Description: <a href="http://www.blubrry.com/powerpress/" target="_blank">Blubrry PowerPress</a> adds podcasting support to your blog. Features include: media player, 3rd party statistics, iTunes integration, Blubrry Services (Media Statistics and Hosting) integration and a lot more.
|
6 |
-
Version: 0.9.
|
7 |
Author: Blubrry
|
8 |
Author URI: http://www.blubrry.com/
|
9 |
Change Log:
|
@@ -29,7 +29,7 @@ License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
|
|
29 |
*/
|
30 |
|
31 |
// WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
|
32 |
-
define('POWERPRESS_VERSION', '0.9.
|
33 |
|
34 |
/////////////////////////////////////////////////////
|
35 |
// The following define options should be placed in your
|
@@ -103,6 +103,8 @@ function powerpress_content($content)
|
|
103 |
// Lets make the default feed the top most feed listed:
|
104 |
if( isset($GeneralSettings['custom_feeds']['podcast']) )
|
105 |
unset($GeneralSettings['custom_feeds']['podcast']);
|
|
|
|
|
106 |
array_unshift($GeneralSettings['custom_feeds'], array('podcast'=>'Podcast Feed') ); // Fixes scenario where the user never configured the custom default podcast feed.
|
107 |
|
108 |
if( !isset($GeneralSettings['display_player']) )
|
3 |
Plugin Name: Blubrry PowerPress
|
4 |
Plugin URI: http://www.blubrry.com/powerpress/
|
5 |
Description: <a href="http://www.blubrry.com/powerpress/" target="_blank">Blubrry PowerPress</a> adds podcasting support to your blog. Features include: media player, 3rd party statistics, iTunes integration, Blubrry Services (Media Statistics and Hosting) integration and a lot more.
|
6 |
+
Version: 0.9.7
|
7 |
Author: Blubrry
|
8 |
Author URI: http://www.blubrry.com/
|
9 |
Change Log:
|
29 |
*/
|
30 |
|
31 |
// WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
|
32 |
+
define('POWERPRESS_VERSION', '0.9.7' );
|
33 |
|
34 |
/////////////////////////////////////////////////////
|
35 |
// The following define options should be placed in your
|
103 |
// Lets make the default feed the top most feed listed:
|
104 |
if( isset($GeneralSettings['custom_feeds']['podcast']) )
|
105 |
unset($GeneralSettings['custom_feeds']['podcast']);
|
106 |
+
else
|
107 |
+
$GeneralSettings['custom_feeds'] = array();
|
108 |
array_unshift($GeneralSettings['custom_feeds'], array('podcast'=>'Podcast Feed') ); // Fixes scenario where the user never configured the custom default podcast feed.
|
109 |
|
110 |
if( !isset($GeneralSettings['display_player']) )
|
powerpressadmin-jquery.php
CHANGED
@@ -249,6 +249,7 @@ function SelectMedia(File)
|
|
249 |
{
|
250 |
$Error = 'Please select your podcast program to continue.';
|
251 |
$Step = 2;
|
|
|
252 |
}
|
253 |
}
|
254 |
else
|
249 |
{
|
250 |
$Error = 'Please select your podcast program to continue.';
|
251 |
$Step = 2;
|
252 |
+
$Settings['blubrry_username'] = $SaveSettings['blubrry_username'];
|
253 |
}
|
254 |
}
|
255 |
else
|
powerpressadmin.php
CHANGED
@@ -934,7 +934,7 @@ function powerpress_admin_head()
|
|
934 |
$page_name = str_replace(array('.php', '-new', '-add'), '', $hook_suffix);
|
935 |
|
936 |
// Powerpress page
|
937 |
-
if( strstr($
|
938 |
{
|
939 |
?>
|
940 |
<script type="text/javascript">
|
@@ -1103,7 +1103,7 @@ function powerpress_check_url(url)
|
|
1103 |
else
|
1104 |
{
|
1105 |
// Print this line for debugging when loooking for other pages to include header data for
|
1106 |
-
|
1107 |
}
|
1108 |
}
|
1109 |
|
934 |
$page_name = str_replace(array('.php', '-new', '-add'), '', $hook_suffix);
|
935 |
|
936 |
// Powerpress page
|
937 |
+
if( strstr($_GET['page'], 'powerpress' ) !== false )
|
938 |
{
|
939 |
?>
|
940 |
<script type="text/javascript">
|
1103 |
else
|
1104 |
{
|
1105 |
// Print this line for debugging when loooking for other pages to include header data for
|
1106 |
+
echo "<!-- WP Page Name: $page_name; Hook Suffix: $hook_suffix -->\n";
|
1107 |
}
|
1108 |
}
|
1109 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Angelo Mandato, Blubrry.com
|
|
3 |
Tags: podcast, podcasting, itunes, enclosure, zune, iphone, youtube, viddler, blip.tv, audio, video, rss2, feed, player, media, rss, mp3, music, embed, feedburner, statistics, stats, flv, flash, id3, episodes, blubrry
|
4 |
Requires at least: 2.6.0
|
5 |
Tested up to: 2.8.4
|
6 |
-
Stable tag: 0.9.
|
7 |
|
8 |
Add podcasting support to your blog.
|
9 |
|
@@ -85,6 +85,12 @@ As a alternative, PowerPress allows you to create additional Custom Podcast Feed
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 0.9.6 =
|
89 |
* Released on 8/31/2009
|
90 |
* Added Auto Add Media option, auto adds first/last media link found in post content. (default is off)
|
3 |
Tags: podcast, podcasting, itunes, enclosure, zune, iphone, youtube, viddler, blip.tv, audio, video, rss2, feed, player, media, rss, mp3, music, embed, feedburner, statistics, stats, flv, flash, id3, episodes, blubrry
|
4 |
Requires at least: 2.6.0
|
5 |
Tested up to: 2.8.4
|
6 |
+
Stable tag: 0.9.7
|
7 |
|
8 |
Add podcasting support to your blog.
|
9 |
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 0.9.7 =
|
89 |
+
* Released on 8/31/2009
|
90 |
+
* Fixed array_unshift() for users in simple mode, bug created in 0.9.6 release.
|
91 |
+
* Fixed link to change from simple/advanced modes, bug created in 0.9.6 release.
|
92 |
+
* Fixed bug with changing Blubrry Services account email address.
|
93 |
+
|
94 |
= 0.9.6 =
|
95 |
* Released on 8/31/2009
|
96 |
* Added Auto Add Media option, auto adds first/last media link found in post content. (default is off)
|