kopia lustrzana https://github.com/jprochazka/adsb-receiver
Merge remote-tracking branch 'refs/remotes/origin/master' into 2.0.2
commit
5c1ca650a6
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
The following is a history of the changes made to this project.
|
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)*
|
## v2.0.1 *(April 29th, 2016)*
|
||||||
|
|
||||||
* Flight logging is now inserted properly into SQLite databases. *(advanced)*
|
* Flight logging is now inserted properly into SQLite databases. *(advanced)*
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,8 @@ PIAWAREVERSION="2.1-5"
|
||||||
PIAWAREBRANCH="5c77c4924"
|
PIAWAREBRANCH="5c77c4924"
|
||||||
|
|
||||||
# PlaneFinder ADS-B Client
|
# PlaneFinder ADS-B Client
|
||||||
PFCLIENTVERSIONARM="3.4.25"
|
PFCLIENTVERSIONARM="3.4.30"
|
||||||
PFCLIENTVERSIONI386="3.4.25"
|
PFCLIENTVERSIONI386="3.4.30"
|
||||||
|
|
||||||
# Flightradar24 Linux Debian package
|
# Flightradar24 Linux Debian package
|
||||||
FR24CLIENTVERSIONI386="1.0.18-5"
|
FR24CLIENTVERSIONI386="1.0.18-5"
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUptimeInformation() {
|
function getUptimeInformation() {
|
||||||
$uptimeArray = split(' ', exec("cat /proc/uptime"));
|
$uptimeArray = explode(' ', exec("cat /proc/uptime"));
|
||||||
$uptime['inSeconds'] = trim($uptimeArray[0]);
|
$uptime['inSeconds'] = trim($uptimeArray[0]);
|
||||||
$uptime['hours'] = floor($uptime['inSeconds'] / 3600);
|
$uptime['hours'] = floor($uptime['inSeconds'] / 3600);
|
||||||
$uptime['minutes'] = floor(($uptime['inSeconds'] - ($uptime['hours'] * 3600)) / 60);
|
$uptime['minutes'] = floor(($uptime['inSeconds'] - ($uptime['hours'] * 3600)) / 60);
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue