Simple Social Icons - Version 0.9.5

Version Description

  • Added Instagram icon
Download this release

Release Info

Developer nathanrice
Plugin Icon 128x128 Simple Social Icons
Version 0.9.5
Comparing to
See all releases

Code changes from version 0.9.4 to 0.9.5

images/sprite_24x24.png CHANGED
Binary file
images/sprite_32x32.png CHANGED
Binary file
images/sprite_48x48.png CHANGED
Binary file
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: nathanrice, studiopress
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 3.3
5
- Tested up to: 3.3.1
6
- Stable tag: 0.9.4
7
 
8
  This plugin/widget allows you to insert social icons in any widget area.
9
 
@@ -41,4 +41,7 @@ No, not at this time.
41
 
42
  = 0.9.4 =
43
  * Added YouTube icon
44
- * Added bottom margin to icons
 
 
 
2
  Contributors: nathanrice, studiopress
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 3.3
5
+ Tested up to: 3.5.1
6
+ Stable tag: 0.9.5
7
 
8
  This plugin/widget allows you to insert social icons in any widget area.
9
 
41
 
42
  = 0.9.4 =
43
  * Added YouTube icon
44
+ * Added bottom margin to icons
45
+
46
+ = 0.9.5 =
47
+ * Added Instagram icon
simple-social-icons.php CHANGED
@@ -6,7 +6,7 @@ Description: A simple, CSS and sprite driven social icons widget.
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
- Version: 0.9.4
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -46,23 +46,24 @@ class Simple_Social_Icons_Widget extends WP_Widget {
46
  * Default widget option values.
47
  */
48
  $this->defaults = array(
49
- 'title' => '',
50
- 'new_window' => 0,
51
- 'size' => 32,
52
- 'border_radius' => 3,
53
- 'background_color' => '#999999',
54
  'background_color_hover' => '#666666',
55
- 'alignment' => 'alignleft',
56
- 'dribbble' => '',
57
- 'email' => '',
58
- 'facebook' => '',
59
- 'gplus' => '',
60
- 'linkedin' => '',
61
- 'pinterest' => '',
62
- 'rss' => '',
63
- 'stumbleupon' => '',
64
- 'twitter' => '',
65
- 'youtube' => '',
 
66
  );
67
 
68
  /**
@@ -110,6 +111,15 @@ class Simple_Social_Icons_Widget extends WP_Widget {
110
  '48' => '-144px 0',
111
  )
112
  ),
 
 
 
 
 
 
 
 
 
113
  'linkedin' => array(
114
  'label' => __( 'Linkedin URI', 'ssiw' ),
115
  'pattern' => '<li class="social-linkedin"><a href="%s" %s>Linkedin</a></li>',
@@ -387,4 +397,4 @@ function ssiw_load_widget() {
387
 
388
  register_widget( 'Simple_Social_Icons_Widget' );
389
 
390
- }
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
+ Version: 0.9.5
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
46
  * Default widget option values.
47
  */
48
  $this->defaults = array(
49
+ 'title' => '',
50
+ 'new_window' => 0,
51
+ 'size' => 32,
52
+ 'border_radius' => 3,
53
+ 'background_color' => '#999999',
54
  'background_color_hover' => '#666666',
55
+ 'alignment' => 'alignleft',
56
+ 'dribbble' => '',
57
+ 'email' => '',
58
+ 'facebook' => '',
59
+ 'gplus' => '',
60
+ 'instagram' => '',
61
+ 'linkedin' => '',
62
+ 'pinterest' => '',
63
+ 'rss' => '',
64
+ 'stumbleupon' => '',
65
+ 'twitter' => '',
66
+ 'youtube' => '',
67
  );
68
 
69
  /**
111
  '48' => '-144px 0',
112
  )
113
  ),
114
+ 'instagram' => array(
115
+ 'label' => __( 'Instagram URI', 'ssiw' ),
116
+ 'pattern' => '<li class="social-instagram"><a href="%s" %s>Instagram</a></li>',
117
+ 'background_positions' => array(
118
+ '24' => '-240px 0',
119
+ '32' => '-320px 0',
120
+ '48' => '-480px 0',
121
+ )
122
+ ),
123
  'linkedin' => array(
124
  'label' => __( 'Linkedin URI', 'ssiw' ),
125
  'pattern' => '<li class="social-linkedin"><a href="%s" %s>Linkedin</a></li>',
397
 
398
  register_widget( 'Simple_Social_Icons_Widget' );
399
 
400
+ }