Skip to content

Commit 3830f1b

Browse files
v1.0.13
1 parent d5bfc5c commit 3830f1b

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
#### 1.0.13 - May 28, 2020
4+
5+
- Update referrer blocklist.
6+
- Improve date parsing from URL parameters to account for negative UTC offsets. Fixes an issue with the date jumping back one day.
7+
- Don't attempt to install custom endpoint if it was manually installed (using the `KOKO_ANALYTICS_USE_CUSTOM_ENDPOINT` constant).
8+
- Revert to using `home_url()` for the tracker endpoint URL.
9+
10+
311
#### 1.0.12 - May 14, 2020
412

513
- Add filter `koko_analytics_honor_dnt` to allow ignoring DoNotTrack.

composer.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

koko-analytics.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Plugin Name: Koko Analytics
44
Plugin URI: https://www.kokoanalytics.com/#utm_source=wp-plugin&utm_medium=koko-analytics&utm_campaign=plugins-page
5-
Version: 1.0.12
5+
Version: 1.0.13
66
Description: Privacy-friendly analytics for your WordPress site.
77
Author: ibericode
88
Author URI: https://ibericode.com/#utm_source=wp-plugin&utm_medium=koko-analytics&utm_campaign=plugins-page
@@ -32,7 +32,7 @@
3232

3333
namespace KokoAnalytics;
3434

35-
define( 'KOKO_ANALYTICS_VERSION', '1.0.12' );
35+
define( 'KOKO_ANALYTICS_VERSION', '1.0.13' );
3636
define( 'KOKO_ANALYTICS_PLUGIN_FILE', __FILE__ );
3737
define( 'KOKO_ANALYTICS_PLUGIN_DIR', __DIR__ );
3838

readme.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://kokoanalytics.com/
44
Tags: analytics, statistics, stats, koko
55
Requires at least: 4.6
66
Tested up to: 5.4.1
7-
Stable tag: 1.0.12
7+
Stable tag: 1.0.13
88
License: GPLv3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010
Requires PHP: 5.3
@@ -89,6 +89,14 @@ window.koko_analytics.use_cookie = true;
8989

9090
== Changelog ==
9191

92+
#### 1.0.13 - May 28, 2020
93+
94+
- Update referrer blocklist.
95+
- Improve date parsing from URL parameters to account for negative UTC offsets. Fixes an issue with the date jumping back one day.
96+
- Don't attempt to install custom endpoint if it was manually installed (using the `KOKO_ANALYTICS_USE_CUSTOM_ENDPOINT` constant).
97+
- Revert to using `home_url()` for the tracker endpoint URL.
98+
99+
92100
#### 1.0.12 - May 14, 2020
93101

94102
- Add filter `koko_analytics_honor_dnt` to allow ignoring DoNotTrack.

0 commit comments

Comments
 (0)