From a8ca0567c1a935293f96386bece13aec9c595242 Mon Sep 17 00:00:00 2001 From: Altamash Shaikh Date: Wed, 25 Jun 2025 16:38:07 +0530 Subject: [PATCH 1/2] Removed Piwik reference, #PG-4266 --- CHANGELOG.md | 1 + javascripts/url.spec.js | 2 +- plugin.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 556178b..f80e660 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Changelog +* 5.0.2 - 2025-07-07 - Textual changes * 5.0.1 Added plugin category for Marketplace * 5.0.0 Compatibility with Matomo 5 * 4.1.0 Migrating from AngularJS to Vue diff --git a/javascripts/url.spec.js b/javascripts/url.spec.js index d9431ef..858006b 100644 --- a/javascripts/url.spec.js +++ b/javascripts/url.spec.js @@ -43,7 +43,7 @@ expect(url).to.eql(trackingDomain + '/CoreHome/default/?idSite=3&date=today&period=day'); }); - it('should correctly change a piwik 3 url', function() { + it('should correctly change a matomo 3 url', function() { var url = urlAnonymizer.makeUrlHierarchical(anonymousDomain + '/index.php?idSite=1&period=day#?idSite=1&period=day&date=yesterday&category=General_Actions&subcategory=Events_Events') expect(url).to.eql(trackingDomain + '/Actions/Events/?idSite=1&period=day'); }); diff --git a/plugin.json b/plugin.json index f6283e9..16735e2 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "AnonymousPiwikUsageMeasurement", - "version": "5.0.1", + "version": "5.0.2", "description": "Send anonymized usage data to your own Matomo instance or to any other Matomo", "theme": false, "keywords": [ From 3ac1c51a76252d13a36ee4096b207f3db6b1ef0b Mon Sep 17 00:00:00 2001 From: Altamash Shaikh Date: Thu, 26 Jun 2025 17:05:29 +0530 Subject: [PATCH 2/2] Added matomo as keyword --- plugin.json | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin.json b/plugin.json index 16735e2..fcaf9c7 100644 --- a/plugin.json +++ b/plugin.json @@ -7,6 +7,7 @@ "usage", "tracking", "measurement", + "matomo", "piwik" ], "license": "GPL v3+",