Changeset 319
- Timestamp:
- 01/27/10 12:50:55 (12 years ago)
- Location:
- audio-player/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
audio-player/trunk
- Property subclipse:tags
-
old new 4 4 293,2.0.2,/audio-player/tags/2.0.2,tag 5 5 310,2.0.3,/audio-player/tags/2.0.3,tag 6 314,2.0.3.1,/audio-player/tags/2.0.3.1,tag
-
- Property subclipse:tags
-
audio-player/trunk/plugin/audio-player.php
r318 r319 4 4 Plugin URI: http://wpaudioplayer.com 5 5 Description: Audio Player is a highly configurable but simple mp3 player for all your audio needs. You can customise the player's colour scheme to match your blog theme, have it automatically show track information from the encoded ID3 tags and more. Go to your Settings page to start configuring it. 6 Version: 2.0. 3.26 Version: 2.0.4 7 7 Author: Martin Laine 8 8 Author URI: http://www.1pixelout.net … … 46 46 var $optionsName = "AudioPlayer_options"; 47 47 48 var $version = "2.0. 3.2";48 var $version = "2.0.4"; 49 49 50 50 var $docURL = "http://wpaudioplayer.com/"; … … 883 883 global $AudioPlayer; 884 884 if (!isset($AudioPlayer)) { 885 $AudioPlayer = new AudioPlayer(); 885 if (version_compare(PHP_VERSION, '5.0.0', '<')) { 886 $AudioPlayer = &new AudioPlayer(); 887 } else { 888 $AudioPlayer = new AudioPlayer(); 889 } 886 890 } 887 891 } -
audio-player/trunk/plugin/readme.txt
r316 r319 6 6 Requires at least: 2.2 7 7 Tested up to: 2.9 8 Stable tag: 2.0. 3.18 Stable tag: 2.0.4 9 9 10 10 Audio Player is a highly configurable but simple mp3 player for all your audio needs. You can customise the player's colour scheme to match your blog theme, have it automatically show track information from the encoded ID3 tags and more. … … 46 46 == Changelog == 47 47 48 = 2.0.4 = 49 50 * Reverted RTL play button (again, needs more flexible options) 51 * Added "remove all enclosures" option 52 * Fixed PHP 4 compatibility (this caused players to not show in the Sermon Browser plugin) 53 48 54 = 2.0.3.1 = 49 55 -
audio-player/trunk/source/classes/Control.as
r303 r319 1 class Control extends MovieClip1 class Control extends MovieClip 2 2 { 3 3 public var play_mc:MovieClip; … … 81 81 this.background_mc._y = this.background_mc._height; 82 82 this.background_mc._x = this.background_mc._width; 83 this.play_mc._rotation = 180; 84 this.play_mc._y += this.play_mc._height; 83 //this.play_mc._rotation = 180; 84 //this.play_mc._y += this.play_mc._height; 85 this.play_mc._x = 14; 85 86 this.pause_mc._x = 13; 86 87 }
Note: See TracChangeset
for help on using the changeset viewer.