Changeset 159216
- Timestamp:
- 09/30/2009 05:57:12 AM (16 years ago)
- Location:
- wp-media-player/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-media-player/trunk/readme.txt
r147371 r159216 5 5 Tested up to: 2.8.4 6 6 Stable tag: 0.7.1 7 8 7 A Silverlight-based Media Player for WordPress. 9 8 … … 13 12 The plugin has the following features: 14 13 14 * 6 player styles 15 * Watermark image 16 * Tracking and reporting on how many times the videos have been watched 15 17 * Default player configuration settings, such as size, thumbnail, auto load and auto play. 16 18 * Per-instance player configuration settings that can be used to customize each individual player within or across blog posts. 17 19 * Unlimited number of players within the same blog post or page. 18 * Option to not load players on the home page of the blog. This helps to reduce the amount of content to download for visitors who do not want to watch a video.19 * 6 player styles20 20 * UI for uploading of video files and for inserting media players into blog posts and pages 21 * Tracking and reporting on how many times the videos have been watched22 21 23 22 Follow the instructions at [WP Media Player - Video Encoding](http://ruslany.net/wp-media-player/video-encoding/) to encode the video content for the player. 24 23 25 The version 0. 7.1 is a minor release that contains a fix for the bug where player failed in IE if HTML contained any tag with id="title". Refer to the [changelog](http://ruslany.net/wp-media-player/changelog/) for more details.24 The version 0.8 contains several bug fixes and a new feature for adding watermark image in the player. Refer to the [changelog](http://ruslany.net/wp-media-player/changelog/) for more details. 26 25 27 26 For more information, demos and usage instructions refer to [the plugin home page](http://ruslany.net/wp-media-player/). … … 47 46 48 47 == Changelog == 48 49 = 0.8 = 50 * Fixed a bug in the Uploader dialog that caused it to fail on Linux file systems 51 * Fixed the bug in player which caused the video to be shifted to the left 52 * Added new feature to support watermark image in the player 49 53 50 54 = 0.7.1 = -
wp-media-player/trunk/wp-media-player.php
r158241 r159216 102 102 add_filter( 'the_content', array(&$this, 'replace_tag_to_html'), 12 ); 103 103 add_filter( 'content_save_pre', array(&$this, 'check_for_tag'), 12 ); 104 104 105 105 // Localization 106 106 load_plugin_textdomain( 'wp-media-player', '/wp-content/plugins/wp-media-player/languages' ); … … 116 116 '1' => __('100%', 'wp-media-player') ); 117 117 } 118 118 119 119 /** 120 120 * Initialization of the plugin's configuration parameters … … 142 142 'watermarkPosition' => get_option( 'wp_media_player_wmposition' ) ); 143 143 } 144 144 145 145 /** 146 146 * Creates the database table for storing video views data. … … 182 182 183 183 maybe_create_table( $wpdb -> playerstats, $create_playerstats_sql ); 184 184 185 185 add_option( 'wp_media_player_autoLoad', '0' ); 186 186 add_option( 'wp_media_player_autoPlay', '0' ); … … 466 466 $tmp = $this -> default_parameters['muted']; 467 467 $scriptcode .= "player_".$post_id."_$i.mutedParam=".($tmp == '1'?'true':'false').";\n"; 468 468 469 469 $tmp = $this -> plugin_parameters['watermarkSource']; 470 470 if ( strlen( $tmp ) > 0 ) { … … 475 475 $scriptcode .= "player_".$post_id."_$i.watermarkPosition=$tmp;\n"; 476 476 } 477 477 478 478 $scriptcode .= "player_".$post_id."_$i.postId=".$post_id.";\n"; 479 479 $scriptcode .= "player_".$post_id."_$i.ajaxUrl='".$this -> pluginurl."wp-media-player.php';\n"; 480 480 481 481 $scriptcode .= "player_".$post_id."_$i.getPlaylist=getCustomPlaylist_".$post_id."_$i;\n"; 482 482 $scriptcode .= "-->\n"; … … 584 584 return $p . $r; 585 585 } 586 586 587 587 function dropdown_styles( $default = '1' ) { 588 588 return $this -> dropdown_html( $this -> player_styles, $default );
Note: See TracChangeset
for help on using the changeset viewer.