Merge remote-tracking branch 'refs/remotes/origin/master' into 2.0.2

pull/192/head
Joe Prochazka 2016-05-10 21:46:32 -04:00
commit 5c1ca650a6
3 zmienionych plików z 13 dodań i 3 usunięć

Wyświetl plik

@ -2,6 +2,16 @@
The following is a history of the changes made to this project.
## v2.0.2 *(May 10th, 2016)*
* Adjusted the postback check function to possibly fix POST issues.
* Non MySQL root users with the proper permissions can be used during install. *(advanced)*
* Fixed bug where a malformed if statement was causing upgrade problems. *(advanced)*
* Links to aggregate site stats pages now open in a new web browser windows.
* The Postfix MTA package is now installed if not present.
* The bash scripts now detect Ubuntu 16.04 LTS and install the proper PHP packages.
* The cUrrent MySQL database size is displayed on the maintainance tab. *(advanced)*
## v2.0.1 *(April 29th, 2016)*
* Flight logging is now inserted properly into SQLite databases. *(advanced)*

Wyświetl plik

@ -38,8 +38,8 @@ PIAWAREVERSION="2.1-5"
PIAWAREBRANCH="5c77c4924"
# PlaneFinder ADS-B Client
PFCLIENTVERSIONARM="3.4.25"
PFCLIENTVERSIONI386="3.4.25"
PFCLIENTVERSIONARM="3.4.30"
PFCLIENTVERSIONI386="3.4.30"
# Flightradar24 Linux Debian package
FR24CLIENTVERSIONI386="1.0.18-5"

Wyświetl plik

@ -133,7 +133,7 @@
}
function getUptimeInformation() {
$uptimeArray = split(' ', exec("cat /proc/uptime"));
$uptimeArray = explode(' ', exec("cat /proc/uptime"));
$uptime['inSeconds'] = trim($uptimeArray[0]);
$uptime['hours'] = floor($uptime['inSeconds'] / 3600);
$uptime['minutes'] = floor(($uptime['inSeconds'] - ($uptime['hours'] * 3600)) / 60);