Plugin Directory

Changeset 159216


Ignore:
Timestamp:
09/30/2009 05:57:12 AM (16 years ago)
Author:
ruslany
Message:

Readme and screenshot updates.

Location:
wp-media-player/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-media-player/trunk/readme.txt

    r147371 r159216  
    55Tested up to: 2.8.4
    66Stable tag: 0.7.1
    7 
    87A Silverlight-based Media Player for WordPress.
    98
     
    1312The plugin has the following features:
    1413
     14* 6 player styles
     15* Watermark image
     16* Tracking and reporting on how many times the videos have been watched
    1517* Default player configuration settings, such as size, thumbnail, auto load and auto play.
    1618* Per-instance player configuration settings that can be used to customize each individual player within or across blog posts.
    1719* 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 styles
    2020* 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 watched
    2221
    2322Follow the instructions at [WP Media Player - Video Encoding](http://ruslany.net/wp-media-player/video-encoding/) to encode the video content for the player.
    2423
    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.
     24The 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.
    2625
    2726For more information, demos and usage instructions refer to [the plugin home page](http://ruslany.net/wp-media-player/).
     
    4746
    4847== 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
    4953
    5054= 0.7.1 =
  • wp-media-player/trunk/wp-media-player.php

    r158241 r159216  
    102102            add_filter( 'the_content', array(&$this, 'replace_tag_to_html'), 12 );
    103103            add_filter( 'content_save_pre', array(&$this, 'check_for_tag'), 12 );
    104            
     104
    105105            // Localization
    106106            load_plugin_textdomain( 'wp-media-player', '/wp-content/plugins/wp-media-player/languages' );
     
    116116                                                    '1' => __('100%', 'wp-media-player') );
    117117        }
    118        
     118
    119119        /**
    120120        * Initialization of the plugin's configuration parameters
     
    142142                                                    'watermarkPosition' => get_option( 'wp_media_player_wmposition' ) );
    143143        }
    144        
     144
    145145        /**
    146146        * Creates the database table for storing video views data.
     
    182182
    183183            maybe_create_table( $wpdb -> playerstats, $create_playerstats_sql );
    184            
     184
    185185            add_option( 'wp_media_player_autoLoad', '0' );
    186186            add_option( 'wp_media_player_autoPlay', '0' );
     
    466466                        $tmp = $this -> default_parameters['muted'];
    467467                    $scriptcode .= "player_".$post_id."_$i.mutedParam=".($tmp == '1'?'true':'false').";\n";
    468                    
     468
    469469                    $tmp = $this -> plugin_parameters['watermarkSource'];
    470470                    if ( strlen( $tmp ) > 0 ) {
     
    475475                        $scriptcode .= "player_".$post_id."_$i.watermarkPosition=$tmp;\n";
    476476                    }
    477                    
     477
    478478                    $scriptcode .= "player_".$post_id."_$i.postId=".$post_id.";\n";
    479479                    $scriptcode .= "player_".$post_id."_$i.ajaxUrl='".$this -> pluginurl."wp-media-player.php';\n";
    480                    
     480
    481481                    $scriptcode .= "player_".$post_id."_$i.getPlaylist=getCustomPlaylist_".$post_id."_$i;\n";
    482482                    $scriptcode .= "-->\n";
     
    584584            return $p . $r;
    585585        }
    586        
     586
    587587        function dropdown_styles( $default = '1' ) {
    588588            return $this -> dropdown_html( $this -> player_styles, $default );
Note: See TracChangeset for help on using the changeset viewer.