Reverted unneeded change.

pull/444/head
Joe Prochazka 2018-06-22 11:23:30 -04:00
rodzic 54a8a98fff
commit d189f31e80
2 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -11,7 +11,6 @@ The following is a history of the changes made to this project.
* Added switch to force apt update when executing install.sh.
* Updated current Planefinder client versions to 4.1.1.
* Updated current dump1090-fa version to 3.2.3.
* The system page bandwidth meter now maxes out at 150KB/MB per second.
* The system page bandwidth meter now defaults to MB/sec on fresh installations.
## v2.6.2 *(April 6th, 2018)*

Wyświetl plik

@ -9,8 +9,8 @@ $(document).ready(function () {
['Label', 'Value'],
['Memory', 100],
['CPU', 100],
['In ' + ((bandwidthScale == 'kbps') ? '(KB/s)' : '(MB/s)'), 150],
['Out ' + ((bandwidthScale == 'kbps') ? '(KB/s)' : '(MB/s)'), 150],
['In ' + ((bandwidthScale == 'kbps') ? '(KB/s)' : '(MB/s)'), 100],
['Out ' + ((bandwidthScale == 'kbps') ? '(KB/s)' : '(MB/s)'), 100],
['CPU Temp', 100]
]);