PowerPress Podcasting plugin by Blubrry - Version 0.9.4

Version Description

  • Released on 8/10/2009
  • Fixed bug with setting width of video player.
  • Added logic to always use the FlowPlayerClassic.swf player for flv video files.
Download this release

Release Info

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

Code changes from version 0.9.3 to 0.9.4

Files changed (2) hide show
  1. powerpress.php +5 -5
  2. readme.txt +7 -2
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.3
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.3' );
33
 
34
  /////////////////////////////////////////////////////
35
  // The following define options should be placed in your
@@ -1205,7 +1205,7 @@ function powerpress_player_filter($content, $media_url, $ExtraData = array() )
1205
  $player_width = 320;
1206
  $player_height = 240;
1207
  if( isset($Settings['player_width']) && $Settings['player_width'] )
1208
- $player_width = 340;
1209
  if( isset($Settings['player_height']) && $Settings['player_height'] )
1210
  $player_height = $Settings['player_height'];
1211
 
@@ -1229,11 +1229,11 @@ function powerpress_player_filter($content, $media_url, $ExtraData = array() )
1229
  if( $cover_image == '' )
1230
  $player_height = 24;
1231
 
1232
- case 'flv': {
1233
-
1234
  // Check if we are using a custom flash player...
1235
  if( isset($Settings['player']) && $Settings['player'] != 'default' ) // If we are using some other flash player than the default flash player
1236
  return $content;
 
 
1237
 
1238
  // Okay we are supposed to use FlowPlayerClassic...
1239
  $content .= '<div class="powerpress_player" id="powerpress_player_'. $g_powerpress_player_id .'"></div>'.PHP_EOL;
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.4
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.4' );
33
 
34
  /////////////////////////////////////////////////////
35
  // The following define options should be placed in your
1205
  $player_width = 320;
1206
  $player_height = 240;
1207
  if( isset($Settings['player_width']) && $Settings['player_width'] )
1208
+ $player_width = $Settings['player_width'];
1209
  if( isset($Settings['player_height']) && $Settings['player_height'] )
1210
  $player_height = $Settings['player_height'];
1211
 
1229
  if( $cover_image == '' )
1230
  $player_height = 24;
1231
 
 
 
1232
  // Check if we are using a custom flash player...
1233
  if( isset($Settings['player']) && $Settings['player'] != 'default' ) // If we are using some other flash player than the default flash player
1234
  return $content;
1235
+
1236
+ case 'flv': {
1237
 
1238
  // Okay we are supposed to use FlowPlayerClassic...
1239
  $content .= '<div class="powerpress_player" id="powerpress_player_'. $g_powerpress_player_id .'"></div>'.PHP_EOL;
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  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.2
6
- Stable tag: 0.9.3
7
 
8
  Add podcasting support to your blog.
9
 
@@ -85,6 +85,11 @@ As a alternative, PowerPress allows you to create additional Custom Podcast Feed
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
88
  = 0.9.3 =
89
  * Released on 7/31/2009
90
  * Added option for wp-config.php `define('POWERPRESS_ENABLE_HTTPS_MEDIA', 'warning');` to allow https:// links but still display a warning message.
2
  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.3
6
+ Stable tag: 0.9.4
7
 
8
  Add podcasting support to your blog.
9
 
85
 
86
  == Changelog ==
87
 
88
+ = 0.9.4 =
89
+ * Released on 8/10/2009
90
+ * Fixed bug with setting width of video player.
91
+ * Added logic to always use the FlowPlayerClassic.swf player for flv video files.
92
+
93
  = 0.9.3 =
94
  * Released on 7/31/2009
95
  * Added option for wp-config.php `define('POWERPRESS_ENABLE_HTTPS_MEDIA', 'warning');` to allow https:// links but still display a warning message.