SoundCloud Is Gold - Version 1.0.1

Version Description

  • Fixed shortode using echo instead of return (silly I know). This caused the shortcode to be outputted at the top of the post instead of it's position in the post. Thanks raceyblood for spotting it.
Download this release

Release Info

Developer realTM
Plugin Icon wp plugin SoundCloud Is Gold
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0 to 1.0.1

readme.txt CHANGED
@@ -16,7 +16,7 @@ You'll also be able to set players to different settings before adding to your p
16
 
17
  **Soundcloud is Gold** use a shortcode but the "Soundcloud is Gold" tab will write it for you dynamicly as you select parameters, and on top of this it will provide a nice live preview of your player so you know what does what. When done just press the 'insert soundcloud player' and it will added to your post just like when you're adding a photo or gallery.
18
 
19
- Check out my [TM soundcloud profile](http://www.soundcloud.com/t-m), more [mighty mess](http://www.mightymess.com) and if you love it say it on the [Soundcloud is Gold wordpress plugin page](http://www.wordpress.org/plugins/soundcloud-is-gold), if you use it [donations are always welcomed](http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin) or you just drop a line on [Soundcloud is Gold](http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin) and show some love :)
20
 
21
  = Features =
22
 
@@ -64,8 +64,8 @@ If you wish to have more control here is an example:
64
  * Style sortcode in TinyMCE (editor) because it would be cool and neat;
65
  * Trigger live preview when changing Soundcloud user name
66
  * Live search while typing a name in the user name field. So if you're looking for someone it's kind of easier.
67
- * pagination in tab (is it really needed?)
68
- * change background color and comments color
69
 
70
 
71
  == Installation ==
@@ -76,6 +76,10 @@ Just follow the usual procedure. Log on to your wordpress, go to plugin -> add n
76
 
77
  == Frequently Asked Questions ==
78
 
 
 
 
 
79
  = Can I request features? =
80
 
81
  Yes, you can. If asked nicely and the requests are sensibles, I almost always integrate them to new releases.
16
 
17
  **Soundcloud is Gold** use a shortcode but the "Soundcloud is Gold" tab will write it for you dynamicly as you select parameters, and on top of this it will provide a nice live preview of your player so you know what does what. When done just press the 'insert soundcloud player' and it will added to your post just like when you're adding a photo or gallery.
18
 
19
+ Check out my [TM soundcloud profile](http://www.soundcloud.com/t-m), more [mighty mess](http://www.mightymess.com) and if you love it rate it on the [Soundcloud is Gold wordpress plugin page](http://wordpress.org/extend/plugins/soundcloud-is-gold/). If you use it and want to help, [donations are always welcomed](http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin) or you could just drop a line on [Soundcloud is Gold](http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin) and show some love :)
20
 
21
  = Features =
22
 
64
  * Style sortcode in TinyMCE (editor) because it would be cool and neat;
65
  * Trigger live preview when changing Soundcloud user name
66
  * Live search while typing a name in the user name field. So if you're looking for someone it's kind of easier.
67
+ * Pagination in tab (is it really needed?)
68
+ * Change background color and comments color
69
 
70
 
71
  == Installation ==
76
 
77
  == Frequently Asked Questions ==
78
 
79
+ = I can't see my tracks? =
80
+
81
+ That could be several things but one thing to bare in mind is that all tracks that are set as private on soundcloud won't appear.
82
+
83
  = Can I request features? =
84
 
85
  Yes, you can. If asked nicely and the requests are sensibles, I almost always integrate them to new releases.
soundcloud-is-gold-functions.php CHANGED
@@ -228,7 +228,7 @@ function soundcloud_is_gold_shortcode($attr){
228
  -->
229
  <?php
230
  //no js
231
- echo soundcloud_is_gold_player($attr['id'], $attr['autoPlay'], $attr['comments'], $attr['width'], $attr['classes'], $attr['type'], $attr['color']);
232
  }
233
 
234
 
228
  -->
229
  <?php
230
  //no js
231
+ return soundcloud_is_gold_player($attr['id'], $attr['autoPlay'], $attr['comments'], $attr['width'], $attr['classes'], $attr['type'], $attr['color']);
232
  }
233
 
234
 
soundcloud-is-gold.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Soundcloud is Gold
4
  Plugin URI: http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin
5
  Description: <strong><a href="http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin">Soundcloud is gold</a></strong> integrates perfectly into wordpress. Browse through your soundcloud tracks from the 'soundcloud is gold' tab with the post's 'upload media' popup window. Select, set and add track to your post using the soundcloud player. Live Preview, easy, smart and straightforward. You can set default settings in the option page, choose your defaut soundcloud player (Mini, Standard, Artwork), its width, extra classes for you CSS lovers and your favorite colors. You'll still be able to set players to different settings before adding to your post if you fancy a one off change.
6
- Version: 1.0
7
  Author: Thomas Michalak at Mighty Mess
8
  Author URI: http://www.mightymess.com/thomas-michalak
9
  License: A "Slug" license name e.g. GPL2
3
  Plugin Name: Soundcloud is Gold
4
  Plugin URI: http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin
5
  Description: <strong><a href="http://www.mightymess.com/soundcloud-is-gold-wordpress-plugin">Soundcloud is gold</a></strong> integrates perfectly into wordpress. Browse through your soundcloud tracks from the 'soundcloud is gold' tab with the post's 'upload media' popup window. Select, set and add track to your post using the soundcloud player. Live Preview, easy, smart and straightforward. You can set default settings in the option page, choose your defaut soundcloud player (Mini, Standard, Artwork), its width, extra classes for you CSS lovers and your favorite colors. You'll still be able to set players to different settings before adding to your post if you fancy a one off change.
6
+ Version: 1.0.1
7
  Author: Thomas Michalak at Mighty Mess
8
  Author URI: http://www.mightymess.com/thomas-michalak
9
  License: A "Slug" license name e.g. GPL2