Version Description
- Added YouTube icon
- Added bottom margin to icons
Download this release
Release Info
Developer | nathanrice |
Plugin | Simple Social Icons |
Version | 0.9.4 |
Comparing to | |
See all releases |
Code changes from version 0.9.3 to 0.9.4
- images/sprite_24x24.png +0 -0
- images/sprite_32x32.png +0 -0
- images/sprite_48x48.png +0 -0
- readme.txt +16 -12
- simple-social-icons.php +12 -2
images/sprite_24x24.png
CHANGED
Binary file
|
images/sprite_32x32.png
CHANGED
Binary file
|
images/sprite_48x48.png
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.
|
7 |
|
8 |
This plugin/widget allows you to insert social icons in any widget area.
|
9 |
|
@@ -27,14 +27,18 @@ No, not at this time.
|
|
27 |
== Changelog ==
|
28 |
|
29 |
= 0.9.0 =
|
30 |
-
* Initial Beta Release
|
31 |
-
|
32 |
-
= 0.9.1 =
|
33 |
-
* Fixed some styling issues
|
34 |
-
|
35 |
-
= 0.9.2 =
|
36 |
-
* Added new profile options
|
37 |
-
* Changed default border radius to 3px
|
38 |
-
|
39 |
-
= 0.9.3 =
|
40 |
-
* Fixed CSS conflict in some themes
|
|
|
|
|
|
|
|
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 |
|
27 |
== Changelog ==
|
28 |
|
29 |
= 0.9.0 =
|
30 |
+
* Initial Beta Release
|
31 |
+
|
32 |
+
= 0.9.1 =
|
33 |
+
* Fixed some styling issues
|
34 |
+
|
35 |
+
= 0.9.2 =
|
36 |
+
* Added new profile options
|
37 |
+
* Changed default border radius to 3px
|
38 |
+
|
39 |
+
= 0.9.3 =
|
40 |
+
* Fixed CSS conflict in some themes
|
41 |
+
|
42 |
+
= 0.9.4 =
|
43 |
+
* Added YouTube icon
|
44 |
+
* Added bottom margin to icons
|
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.
|
10 |
|
11 |
License: GNU General Public License v2.0 (or later)
|
12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
@@ -62,6 +62,7 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
62 |
'rss' => '',
|
63 |
'stumbleupon' => '',
|
64 |
'twitter' => '',
|
|
|
65 |
);
|
66 |
|
67 |
/**
|
@@ -154,6 +155,15 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
154 |
'48' => '-384px 0',
|
155 |
)
|
156 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
);
|
158 |
|
159 |
$widget_ops = array(
|
@@ -322,7 +332,7 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
322 |
border: none !important;
|
323 |
float: left;
|
324 |
list-style-type: none !important;
|
325 |
-
margin: 0 5px !important;
|
326 |
padding: 0 !important;
|
327 |
}
|
328 |
.simple-social-icons ul li a,
|
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
|
62 |
'rss' => '',
|
63 |
'stumbleupon' => '',
|
64 |
'twitter' => '',
|
65 |
+
'youtube' => '',
|
66 |
);
|
67 |
|
68 |
/**
|
155 |
'48' => '-384px 0',
|
156 |
)
|
157 |
),
|
158 |
+
'youtube' => array(
|
159 |
+
'label' => __( 'YouTube URI', 'ssiw' ),
|
160 |
+
'pattern' => '<li class="social-youtube"><a href="%s" %s>YouTube</a></li>',
|
161 |
+
'background_positions' => array(
|
162 |
+
'24' => '-216px 0',
|
163 |
+
'32' => '-288px 0',
|
164 |
+
'48' => '-432px 0',
|
165 |
+
)
|
166 |
+
),
|
167 |
);
|
168 |
|
169 |
$widget_ops = array(
|
332 |
border: none !important;
|
333 |
float: left;
|
334 |
list-style-type: none !important;
|
335 |
+
margin: 0 5px 10px !important;
|
336 |
padding: 0 !important;
|
337 |
}
|
338 |
.simple-social-icons ul li a,
|