Slimstat Analytics - Version 4.3.3

Version Description

  • [New] The tracker can now record more than one outbound link per pageview. The corresponding reports have been updated to keep the new column structure into consideration when calculating the values. (thank you, john)
  • [Update] The default method for determining the browser from the user agent string will now be our proprietary heuristic function, not browscap anymore. If needed, you can change this under Settings > Tracker tab.
  • [Fix] A PHP warning was being returned after tracking a click event on an internal download (thank you, Stephen S).
  • [Fix] The new version of Browscap bundled with Slimstat 4.3.2 was causing quite a few 500 Server Error messages for our users. The nature of the issue remains unclear, however we decided to roll back to the previous version of the data file, which was working without any problems.
  • [Fix] Adding a trailing comma to some of the text settings could trigger unexpected behaviors in the tracker. (thank you, paronomasiaster)
Download this release

Release Info

Developer coolmann
Plugin Icon 128x128 Slimstat Analytics
Version 4.3.3
Comparing to
See all releases

Code changes from version 4.3.2.3 to 4.3.3

Files changed (2) hide show
  1. readme.txt +8 -1
  2. wp-slimstat.php +3 -3
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users,
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.6
8
- Stable tag: 4.3.2.3
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
@@ -63,6 +63,13 @@ Our knowledge base is available on our [support center](http://docs.wp-slimstat.
63
 
64
  == Changelog ==
65
 
 
 
 
 
 
 
 
66
  = 4.3.2.3 =
67
  * [Note] Thanks to our user Boris, we were able to clarify some license issues with our partner IP2Location. We look forward to extending the functionality implemented by our IP2Location add-on to offer a better user experience, especially when exporting the data.
68
  * [Fix] When checking for spammers, if our Custom DB add-on was enabled, the plugin was generating a SQL error (thank you, [SGURYGF](https://wordpress.org/support/topic/custom-db-issue))
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.6
8
+ Stable tag: 4.3.3
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
63
 
64
  == Changelog ==
65
 
66
+ = 4.3.3 =
67
+ * [New] The tracker can now record more than one outbound link per pageview. The corresponding reports have been updated to keep the new column structure into consideration when calculating the values. (thank you, [john](https://wordpress.org/support/topic/external-link-tracking-replace-with-another-link))
68
+ * [Update] The default method for determining the browser from the user agent string will now be our proprietary heuristic function, not browscap anymore. If needed, you can change this under Settings > Tracker tab.
69
+ * [Fix] A PHP warning was being returned after tracking a click event on an internal download (thank you, [Stephen S](https://wordpress.org/support/topic/php-notice-undefined-var-data_js)).
70
+ * [Fix] The new version of Browscap bundled with Slimstat 4.3.2 was causing quite a few 500 Server Error messages for our users. The nature of the issue remains unclear, however we decided to roll back to the previous version of the data file, which was working without any problems.
71
+ * [Fix] Adding a trailing comma to some of the text settings could trigger unexpected behaviors in the tracker. (thank you, [paronomasiaster](https://wordpress.org/support/topic/slimstat-not-recording-hits))
72
+
73
  = 4.3.2.3 =
74
  * [Note] Thanks to our user Boris, we were able to clarify some license issues with our partner IP2Location. We look forward to extending the functionality implemented by our IP2Location add-on to offer a better user experience, especially when exporting the data.
75
  * [Fix] When checking for spammers, if our Custom DB add-on was enabled, the plugin was generating a SQL error (thank you, [SGURYGF](https://wordpress.org/support/topic/custom-db-issue))
wp-slimstat.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
- Version: 4.3.2.3
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
@@ -15,7 +15,7 @@ if ( !empty( wp_slimstat::$options ) ) {
15
  }
16
 
17
  class wp_slimstat {
18
- public static $version = '4.3.2.3';
19
  public static $options = array();
20
 
21
  public static $wpdb = '';
@@ -1285,7 +1285,7 @@ class wp_slimstat {
1285
  return array();
1286
  }
1287
  else {
1288
- return array_map( 'trim', explode( ',', $_option ) );
1289
  }
1290
  }
1291
 
3
  Plugin Name: WP Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
+ Version: 4.3.3
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
15
  }
16
 
17
  class wp_slimstat {
18
+ public static $version = '4.3.3';
19
  public static $options = array();
20
 
21
  public static $wpdb = '';
1285
  return array();
1286
  }
1287
  else {
1288
+ return array_filter( array_map( 'trim', explode( ',', $_option ) ) );
1289
  }
1290
  }
1291