Skip to content

Commit e2eb855

Browse files
committed
UniFi API browser 2.0.19
- updated PHP API client to 1.1.69
1 parent 2f15221 commit e2eb855

File tree

95 files changed

+1395
-2607
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+1395
-2607
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Alternatively you may choose to download the zip file and unzip it in your direc
130130

131131
### Installation using Docker
132132

133-
@scyto maintains Docker containers for quick and easy deployment of the UniFi API browser tool. Please refer to [this Wiki page](https://github.com/Art-of-WiFi/UniFi-API-browser/wiki/Docker-Hosting) within the repository for more details:
133+
@scyto maintains Docker containers for quick and easy deployment of the UniFi API browser tool. Please refer to [this Wiki page](https://github.com/Art-of-WiFi/UniFi-API-browser/wiki/Docker-Hosting) within the repository for more details. Please note we don't provide support related to Docker-based installs.
134134

135135

136136
### Configuration

ajax/fetch_collection.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,12 @@
110110
switch ($method) {
111111
case 'stat_5minutes_gateway':
112112
$params = [null, null, $gateway_stats_attribs];
113-
114113
break;
115114
case 'stat_hourly_gateway':
116115
$params = [null, null, $gateway_stats_attribs];
117-
118116
break;
119117
case 'stat_daily_gateway':
120118
$params = [null, null, $gateway_stats_attribs];
121-
122119
break;
123120
case 'stat_monthly_gateway':
124121
$params = [null, null, $gateway_stats_attribs]; }
@@ -217,4 +214,4 @@
217214
header('Content-Type: application/json; charset=utf-8');
218215
echo (json_encode($results));
219216

220-
$_SESSION['memory_used'] = round(memory_get_peak_usage(false) / 1024 / 1024, 2) . 'MB';
217+
$_SESSION['memory_used'] = round(memory_get_peak_usage(false) / 1024 / 1024, 2) . 'MB';

common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* This file is subject to the MIT license that is bundled with this package in the file LICENSE.md
77
*/
8-
define('TOOL_VERSION', '2.0.18');
8+
define('TOOL_VERSION', '2.0.19');
99

1010
/**
1111
* gather some basic information for the About modal

composer.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/art-of-wifi/unifi-api-client/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@
1010
.phpdoc-md
1111

1212
# ignore XML files
13-
*.xml
13+
*.xml
14+
15+
# ignore PHPStorm files
16+
.idea/*

0 commit comments

Comments
 (0)