Version Description
Critical fix for bug introduced in last release; fixes JS references
Download this release
Release Info
Developer | shareaholic |
Plugin | WordPress Social Tools, Related Posts, Monetization – Shareaholic |
Version | 8.9.1 |
Comparing to | |
See all releases |
Code changes from version 8.9.0 to 8.9.1
- readme.txt +8 -1
- shareaholic.php +5 -5
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: buttons, related posts, google analytics, share buttons, social sharing,
|
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.0
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 8.9.
|
8 |
|
9 |
|
10 |
Consolidate plugins with a high-speed suite of social tools: social share buttons, related content, related posts, ad monetization & Google Analytics.
|
@@ -258,6 +258,9 @@ Each time you change Shareaholic's thumbnail dimensions like this, you will prob
|
|
258 |
|
259 |
== Changelog ==
|
260 |
|
|
|
|
|
|
|
261 |
= 8.9.0 (2018-11-15) =
|
262 |
* Various speed improvements
|
263 |
* Bugfix: Share Buttons admin UI drag and drop fixed
|
@@ -827,6 +830,10 @@ Each time you change Shareaholic's thumbnail dimensions like this, you will prob
|
|
827 |
|
828 |
== Upgrade Notice ==
|
829 |
|
|
|
|
|
|
|
|
|
830 |
= 8.9.0 =
|
831 |
|
832 |
Various speed improvements and bug fixes
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.0
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 8.9.1
|
8 |
|
9 |
|
10 |
Consolidate plugins with a high-speed suite of social tools: social share buttons, related content, related posts, ad monetization & Google Analytics.
|
258 |
|
259 |
== Changelog ==
|
260 |
|
261 |
+
= 8.9.1 (2018-11-16) =
|
262 |
+
* Bugfix: Critical fix for bug introduced in last release; fixes JS references
|
263 |
+
|
264 |
= 8.9.0 (2018-11-15) =
|
265 |
* Various speed improvements
|
266 |
* Bugfix: Share Buttons admin UI drag and drop fixed
|
830 |
|
831 |
== Upgrade Notice ==
|
832 |
|
833 |
+
= 8.9.1 =
|
834 |
+
|
835 |
+
Critical fix for bug introduced in last release; fixes JS references
|
836 |
+
|
837 |
= 8.9.0 =
|
838 |
|
839 |
Various speed improvements and bug fixes
|
shareaholic.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* The main file!
|
4 |
*
|
5 |
* @package shareaholic
|
6 |
-
* @version 8.9.
|
7 |
*/
|
8 |
|
9 |
/*
|
10 |
Plugin Name: Shareaholic - Share Buttons, Analytics, Related Posts
|
11 |
Plugin URI: https://www.shareaholic.com/website-tools/
|
12 |
Description: The best WordPress all-in-one Social Media and Related Posts solution. Get found on social and grow your following. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for settings.
|
13 |
-
Version: 8.9.
|
14 |
Author: Shareaholic
|
15 |
Author URI: https://www.shareaholic.com
|
16 |
Text Domain: shareaholic
|
@@ -57,11 +57,11 @@ if (!class_exists('Shareaholic')) {
|
|
57 |
*/
|
58 |
class Shareaholic {
|
59 |
|
60 |
-
const URL = 'https://www.
|
61 |
-
const API_URL = 'https://web.
|
62 |
const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
|
63 |
|
64 |
-
const VERSION = '8.9.
|
65 |
|
66 |
/**
|
67 |
* Starts off as false so that ::get_instance() returns
|
3 |
* The main file!
|
4 |
*
|
5 |
* @package shareaholic
|
6 |
+
* @version 8.9.1
|
7 |
*/
|
8 |
|
9 |
/*
|
10 |
Plugin Name: Shareaholic - Share Buttons, Analytics, Related Posts
|
11 |
Plugin URI: https://www.shareaholic.com/website-tools/
|
12 |
Description: The best WordPress all-in-one Social Media and Related Posts solution. Get found on social and grow your following. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for settings.
|
13 |
+
Version: 8.9.1
|
14 |
Author: Shareaholic
|
15 |
Author URI: https://www.shareaholic.com
|
16 |
Text Domain: shareaholic
|
57 |
*/
|
58 |
class Shareaholic {
|
59 |
|
60 |
+
const URL = 'https://www.shareaholic.com';
|
61 |
+
const API_URL = 'https://web.shareaholic.com'; // uses static IPs for firewall whitelisting
|
62 |
const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
|
63 |
|
64 |
+
const VERSION = '8.9.1';
|
65 |
|
66 |
/**
|
67 |
* Starts off as false so that ::get_instance() returns
|