Version Description
- Added version number to enqueue styles
Download this release
Release Info
Developer | lucymtc |
Plugin | Simple Follow Me Social Buttons Widget |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- includes/widget.php +2 -2
- readme.txt +4 -1
- simple-follow-me-social-buttons-widget.php +2 -2
includes/widget.php
CHANGED
@@ -319,7 +319,7 @@ class Sfmsb_Widget extends WP_Widget {
|
|
319 |
* @since 1.0.0
|
320 |
*/
|
321 |
public static function add_style() {
|
322 |
-
wp_enqueue_style('sfmsb-style', SFMSB_PLUGIN_URL . 'assets/css/style.css');
|
323 |
}
|
324 |
|
325 |
/**
|
@@ -327,7 +327,7 @@ class Sfmsb_Widget extends WP_Widget {
|
|
327 |
* @since 1.0.0
|
328 |
*/
|
329 |
public static function add_admin_scripts() {
|
330 |
-
wp_enqueue_style('sfmsb-admin-style', SFMSB_PLUGIN_URL . 'assets/css/admin.css');
|
331 |
wp_enqueue_style( 'wp-color-picker' );
|
332 |
wp_enqueue_script( 'wp-color-picker' );
|
333 |
}
|
319 |
* @since 1.0.0
|
320 |
*/
|
321 |
public static function add_style() {
|
322 |
+
wp_enqueue_style('sfmsb-style', SFMSB_PLUGIN_URL . 'assets/css/style.css', array(), SFMSB_PLUGIN_VERSION);
|
323 |
}
|
324 |
|
325 |
/**
|
327 |
* @since 1.0.0
|
328 |
*/
|
329 |
public static function add_admin_scripts() {
|
330 |
+
wp_enqueue_style('sfmsb-admin-style', SFMSB_PLUGIN_URL . 'assets/css/admin.css', array(), SFMSB_PLUGIN_VERSION);
|
331 |
wp_enqueue_style( 'wp-color-picker' );
|
332 |
wp_enqueue_script( 'wp-color-picker' );
|
333 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: lucymtc
|
|
3 |
Tags: social,follow me,buttons,twitter,facebook,pinterest,google plus,linkedin,wordpress,rss,github,youtube,vimeo,instagram,font icons,retina ready
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 3.9.1
|
6 |
-
Stable tag: 1.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -49,6 +49,9 @@ Icons from www.flaticon.com
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
|
|
|
|
|
|
52 |
= 1.3 =
|
53 |
* Added Email and SoundCloud icons
|
54 |
|
3 |
Tags: social,follow me,buttons,twitter,facebook,pinterest,google plus,linkedin,wordpress,rss,github,youtube,vimeo,instagram,font icons,retina ready
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 3.9.1
|
6 |
+
Stable tag: 1.3.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
+
= 1.3.1 =
|
53 |
+
* Added version number to enqueue styles
|
54 |
+
|
55 |
= 1.3 =
|
56 |
* Added Email and SoundCloud icons
|
57 |
|
simple-follow-me-social-buttons-widget.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
Plugin Name: Simple Follow Me Social Buttons Widget
|
4 |
Description: Widget to add some of the most popular follow me social buttons. Retina ready.
|
5 |
-
Version: 1.3
|
6 |
Author: Lucy Tomás
|
7 |
Author URI: https://wordpress.org/support/profile/lucymtc
|
8 |
License: GPLv2
|
@@ -107,7 +107,7 @@ final class SFMSB {
|
|
107 |
if( !defined('SFMSB_PLUGIN_DIR') ) { define('SFMSB_PLUGIN_DIR', plugin_dir_path( __FILE__ )); }
|
108 |
if( !defined('SFMSB_PLUGIN_URL') ) { define('SFMSB_PLUGIN_URL', plugin_dir_url( __FILE__ )); }
|
109 |
if( !defined('SFMSB_PLUGIN_FILE') ) { define('SFMSB_PLUGIN_FILE', __FILE__ ); }
|
110 |
-
if( !defined('SFMSB_PLUGIN_VERSION') ) { define('SFMSB_PLUGIN_VERSION', '1.3'); }
|
111 |
|
112 |
}
|
113 |
|
2 |
/**
|
3 |
Plugin Name: Simple Follow Me Social Buttons Widget
|
4 |
Description: Widget to add some of the most popular follow me social buttons. Retina ready.
|
5 |
+
Version: 1.3.1
|
6 |
Author: Lucy Tomás
|
7 |
Author URI: https://wordpress.org/support/profile/lucymtc
|
8 |
License: GPLv2
|
107 |
if( !defined('SFMSB_PLUGIN_DIR') ) { define('SFMSB_PLUGIN_DIR', plugin_dir_path( __FILE__ )); }
|
108 |
if( !defined('SFMSB_PLUGIN_URL') ) { define('SFMSB_PLUGIN_URL', plugin_dir_url( __FILE__ )); }
|
109 |
if( !defined('SFMSB_PLUGIN_FILE') ) { define('SFMSB_PLUGIN_FILE', __FILE__ ); }
|
110 |
+
if( !defined('SFMSB_PLUGIN_VERSION') ) { define('SFMSB_PLUGIN_VERSION', '1.3.1'); }
|
111 |
|
112 |
}
|
113 |
|