diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ee283d..c1e4ffd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ ## Changelog +- 5.0.0 Matomo 5 Compatible. - 4.0.1 Matomo 4 Compatible. Fixed generator documentation link in Plugin Settings - 3.0.0 Initial Version diff --git a/README.md b/README.md index 2b097b4..4ecc766 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,11 @@ Plugin for the Matomo Web Analytics software package that facilitates an easy pr ## Instructions The easiest way to install is to find the plugin in the [Matomo Marketplace](https://plugins.matomo.org/). -A shared secret must be etablished before the plugin will function. +A shared secret must be etablished before the plugin will function. You can set that in `Admin -> System -> General Settings` You will then need to implement an access provider (see example code below) which will generate an access request link users can use. +NOTICE: Users need to have read access to at least 1 website. When you create user accounts give the users access to a "lobby" website. if using LoginLdap utilize the *Initial sites With View Access for New Users* feature to provide access to the lobby website. + ## Usage Implementation code for access provider. Should be trivial to port to other languages. diff --git a/plugin.json b/plugin.json index 23faa02..f4de391 100644 --- a/plugin.json +++ b/plugin.json @@ -1,17 +1,17 @@ { "name": "SiteAccessProvisioner", "description": "Provides a simple method to provision access to site analytics. Integration with Content Management System is highly advised.", - "version": "4.0.1", + "version": "5.0.0", "theme": false, "require": { - "matomo": ">=4.0.0-b1,<5.0.0-b1", + "matomo": ">=5.0.0-b1,<6.0.0-b1", "php": ">=7.0.0" }, "authors": [ { "name": "Josh Brule", "email": "", - "homepage": "https:\/\/www.linkedin.com\/pub\/joshua-brule\/15\/326\/9b9" + "homepage": "https:\/\/github.com\/jbrule" } ], "homepage": "https:\/\/github.com\/jbrule\/matomoplugin-SiteAccessProvisioner",