Version Description
- Add Wanelo
- Add WhatsApp
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.2.8.4 |
Comparing to | |
See all releases |
Code changes from version 1.2.8.3 to 1.2.8.4
- README.txt +5 -1
- add-to-any.php +1 -1
- addtoany.services.php +8 -0
- icons/wanelo.png +0 -0
- icons/whatsapp.png +0 -0
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
|
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, shortcode, sidebar, widget, email, e-mail, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook like, like, twitter, tweet, +1, plus 1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, buffer, stumbleupon, technorati, lockerz, addthis, sociable, sharedaddy, shareaholic, icon, icons, vector, SVG, wpmu, Add to Any, AddToAny
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.9
|
6 |
-
Stable tag: 1.2.8.
|
7 |
|
8 |
Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more.
|
9 |
|
@@ -239,6 +239,10 @@ Upload the plugin directory (including all files and directories within) to the
|
|
239 |
|
240 |
== Changelog ==
|
241 |
|
|
|
|
|
|
|
|
|
242 |
= 1.2.8.3 =
|
243 |
* Set border to none on images for small icons and custom icons
|
244 |
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, shortcode, sidebar, widget, email, e-mail, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook like, like, twitter, tweet, +1, plus 1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, buffer, stumbleupon, technorati, lockerz, addthis, sociable, sharedaddy, shareaholic, icon, icons, vector, SVG, wpmu, Add to Any, AddToAny
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.9
|
6 |
+
Stable tag: 1.2.8.4
|
7 |
|
8 |
Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more.
|
9 |
|
239 |
|
240 |
== Changelog ==
|
241 |
|
242 |
+
= 1.2.8.4 =
|
243 |
+
* Add Wanelo
|
244 |
+
* Add WhatsApp
|
245 |
+
|
246 |
= 1.2.8.3 =
|
247 |
* Set border to none on images for small icons and custom icons
|
248 |
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Share Buttons by AddToAny
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: 1.2.8.
|
7 |
Author: micropat
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
3 |
Plugin Name: Share Buttons by AddToAny
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, StumbleUpon and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: 1.2.8.4
|
7 |
Author: micropat
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
addtoany.services.php
CHANGED
@@ -389,10 +389,18 @@ $A2A_SHARE_SAVE_services = Array(
|
|
389 |
"name" => "Viadeo",
|
390 |
"icon" => "viadeo",
|
391 |
),
|
|
|
|
|
|
|
|
|
392 |
"webnews" => Array(
|
393 |
"name" => "Webnews",
|
394 |
"icon" => "webnews",
|
395 |
),
|
|
|
|
|
|
|
|
|
396 |
"wists" => Array(
|
397 |
"name" => "Wists",
|
398 |
"icon" => "wists",
|
389 |
"name" => "Viadeo",
|
390 |
"icon" => "viadeo",
|
391 |
),
|
392 |
+
"wanelo" => Array(
|
393 |
+
"name" => "Wanelo",
|
394 |
+
"icon" => "wanelo",
|
395 |
+
),
|
396 |
"webnews" => Array(
|
397 |
"name" => "Webnews",
|
398 |
"icon" => "webnews",
|
399 |
),
|
400 |
+
"whatsapp" => Array(
|
401 |
+
"name" => "WhatsApp",
|
402 |
+
"icon" => "whatsapp",
|
403 |
+
),
|
404 |
"wists" => Array(
|
405 |
"name" => "Wists",
|
406 |
"icon" => "wists",
|
icons/wanelo.png
ADDED
Binary file
|
icons/whatsapp.png
ADDED
Binary file
|