Skip to content

Commit

Permalink
build v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sualko committed May 6, 2019
1 parent d9fc880 commit f7a9adf
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Piwik/Matomo Tracking</name>
<summary>Track users with Piwik/Matomo</summary>
<description>Track users with Piwik/Matomo</description>
<version>0.5.1</version>
<version>0.5.2</version>
<licence>agpl</licence>
<author>Klaus Herberth</author>
<category>tools</category>
Expand Down
4 changes: 2 additions & 2 deletions build/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Piwik/Matomo Tracking</name>
<summary>Track users with Piwik/Matomo</summary>
<description>Track users with Piwik/Matomo</description>
<version>0.5.1</version>
<version>0.5.2</version>
<licence>agpl</licence>
<author>Klaus Herberth</author>
<category>tools</category>
Expand All @@ -14,7 +14,7 @@
<repository type="git">https://github.com/sualko/cloud_piwik.git</repository>

<dependencies>
<nextcloud min-version="13.0" max-version="15"/>
<nextcloud min-version="14" max-version="16"/>
</dependencies>

<repair-steps>
Expand Down
2 changes: 1 addition & 1 deletion build/appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'routes' => [
['name' => 'settings#index', 'url' => '/settings', 'verb' => 'GET'],
['name' => 'settings#update', 'url' => '/settings/{key}', 'verb' => 'PUT'],
['name' => 'JavaScript#tracking', 'url' => '/js/tracking.js', 'verb' => 'GET']
['name' => 'JavaScript#tracking', 'url' => '/js/tracking', 'verb' => 'GET']
],
];
?>
4 changes: 2 additions & 2 deletions build/js/track.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* cloud_piwik v0.5.1 - 2019-03-04
* cloud_piwik v0.5.2 - 2019-05-06
*
* Copyright (c) 2019 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see https://github.com/sualko/cloud_piwik
*
* @author Klaus Herberth <[email protected]>
* @version 0.5.1
* @version 0.5.2
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion build/lib/Controller/JavaScriptController.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ public function tracking()
$script = file_get_contents(__DIR__ . '/../../js/track.js');
$script = str_replace('%OPTIONS%', json_encode($options), $script);

return new DataDownloadResponse($script, 'tracking.js', 'text/javascript');
return new DataDownloadResponse($script, 'tracking', 'text/javascript');
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloud_piwik",
"version": "0.5.1",
"version": "0.5.2",
"description": "Track Nextcloud users with piwik/matomo",
"repository": {
"type": "git",
Expand Down

0 comments on commit f7a9adf

Please sign in to comment.