Social Icons Widget - Version 14.10

Version Description

  • Added Soundcloud to default list of services
  • Implemented slash fix for those running the plugin on XAMMP/Windows (Thanks VictoriousK)
Download this release

Release Info

Developer dannisbet
Plugin Icon 128x128 Social Icons Widget
Version 14.10
Comparing to
See all releases

Code changes from version 14.08 to 14.10

css/social_icons_admin.css CHANGED
@@ -35,6 +35,7 @@
35
  .social_icons_widget .path { background-image:url('../icons/small/path.jpg'); }
36
  .social_icons_widget .pinterest { background-image:url('../icons/small/pinterest.jpg'); }
37
  .social_icons_widget .rss { background-image:url('../icons/small/rss.jpg'); }
 
38
  .social_icons_widget .speakerdeck { background-image:url('../icons/small/speakerdeck.jpg'); }
39
  .social_icons_widget .stumbleupon { background-image:url('../icons/small/stumbleupon.jpg'); }
40
  .social_icons_widget .technorati { background-image:url('../icons/small/technorati.jpg'); }
35
  .social_icons_widget .path { background-image:url('../icons/small/path.jpg'); }
36
  .social_icons_widget .pinterest { background-image:url('../icons/small/pinterest.jpg'); }
37
  .social_icons_widget .rss { background-image:url('../icons/small/rss.jpg'); }
38
+ .social_icons_widget .soundcloud { background-image:url('../icons/small/soundcloud.jpg'); }
39
  .social_icons_widget .speakerdeck { background-image:url('../icons/small/speakerdeck.jpg'); }
40
  .social_icons_widget .stumbleupon { background-image:url('../icons/small/stumbleupon.jpg'); }
41
  .social_icons_widget .technorati { background-image:url('../icons/small/technorati.jpg'); }
icons/large/forrst.jpg ADDED
Binary file
icons/large/soundcloud.jpg ADDED
Binary file
icons/medium/forrst.jpg ADDED
Binary file
icons/medium/soundcloud.jpg ADDED
Binary file
icons/small/forrst.jpg ADDED
Binary file
icons/small/soundcloud.jpg ADDED
Binary file
lib/social-networks.php CHANGED
@@ -36,6 +36,7 @@
36
  'Path' => 'path',
37
  'Pinterest' => 'pinterest',
38
  'RSS Feed' => 'rss',
 
39
  'Speaker Deck' => 'speakerdeck',
40
  'StumbleUpon' => 'stumbleupon',
41
  'Technorati' => 'technorati',
36
  'Path' => 'path',
37
  'Pinterest' => 'pinterest',
38
  'RSS Feed' => 'rss',
39
+ 'SoundCloud' => 'soundcloud',
40
  'Speaker Deck' => 'speakerdeck',
41
  'StumbleUpon' => 'stumbleupon',
42
  'Technorati' => 'technorati',
lib/widget.php CHANGED
@@ -38,6 +38,11 @@ $ul_class .= 'icons-'.$siw_icons;
38
  }
39
  else {
40
  $siw_abs_path = str_replace('lib/', '', plugin_dir_path( __FILE__ ));
 
 
 
 
 
41
  $siw_icon_path = $siw_abs_path . 'icons/'.$siw_icons.'/'.$id.'.{gif,jpg,jpeg,png}';
42
 
43
  if($siw_icons == 'large') { $imgsize = 'height="64" width="64"'; }
38
  }
39
  else {
40
  $siw_abs_path = str_replace('lib/', '', plugin_dir_path( __FILE__ ));
41
+
42
+ /* Fix for Windows/XAMPP where the slash goes the wrong way.
43
+ Thanks to VictoriousK */
44
+ $siw_abs_path = str_replace('\\', '/', $siw_abs_path);
45
+
46
  $siw_icon_path = $siw_abs_path . 'icons/'.$siw_icons.'/'.$id.'.{gif,jpg,jpeg,png}';
47
 
48
  if($siw_icons == 'large') { $imgsize = 'height="64" width="64"'; }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social, media, widget, follow, profile, icons, 500px, About.me, Behance, D
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CJN7XU3Z7XHDL
5
  Requires at least: 3.5.1
6
  Tested up to: 4.0
7
- Stable tag: 14.08
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -74,6 +74,10 @@ The opening and closing unordered list tags can be edited or changed with the so
74
 
75
  == Changelog ==
76
 
 
 
 
 
77
  = 14.08 =
78
  * Added prefixes to PHP variables to prevent conflicts with other plugins.
79
 
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CJN7XU3Z7XHDL
5
  Requires at least: 3.5.1
6
  Tested up to: 4.0
7
+ Stable tag: 14.10
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
74
 
75
  == Changelog ==
76
 
77
+ = 14.10 =
78
+ * Added Soundcloud to default list of services
79
+ * Implemented slash fix for those running the plugin on XAMMP/Windows (Thanks VictoriousK)
80
+
81
  = 14.08 =
82
  * Added prefixes to PHP variables to prevent conflicts with other plugins.
83
 
screenshot-1.jpg CHANGED
Binary file
screenshot-2.jpg CHANGED
Binary file
social-media-icons-widget.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Social Icons Widget
4
  Plugin URI: http://github.com/dannisbet/Social-Icons-Widget
5
- Version: 14.08
6
  Description: Displays a list of social media website icons and a link to your profile.
7
  Author: Dan Nisbet
8
  Author URI: http://nisbetcreative.com/
2
  /*
3
  Plugin Name: Social Icons Widget
4
  Plugin URI: http://github.com/dannisbet/Social-Icons-Widget
5
+ Version: 14.10
6
  Description: Displays a list of social media website icons and a link to your profile.
7
  Author: Dan Nisbet
8
  Author URI: http://nisbetcreative.com/