Layout changes.

pull/290/merge
Joe Prochazka 2018-03-23 14:24:52 -04:00
rodzic 1dfbbbb6ec
commit 478ca80626
3 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -2,10 +2,11 @@
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.7.0 *(prerelease)* ## v2.6.2 *(prerelease)*
* Option to install dump1090-fa removed on Ubuntu 17.10 or higher due to cx_freez issue. * Option to install dump1090-fa removed on Ubuntu 17.10 or higher due to cx_freez issue.
* Fixed so Ubunbtu 17.10 and higher properly installs PHP 7.1 and its related packages. * Fixed so Ubunbtu 17.10 and higher properly installs PHP 7.1 and its related packages.
* Install the package php7.1-xml if using Ubuntu 17.10 or newer.
* ADS-B Exchange run script now uses socat instead of netcat to send data. * ADS-B Exchange run script now uses socat instead of netcat to send data.
* Removed Mapzen support from the scripts due to the service shutting down. * Removed Mapzen support from the scripts due to the service shutting down.
* Now uses socat instead of netcat to feed ADS-B Exchange. * Now uses socat instead of netcat to feed ADS-B Exchange.

Wyświetl plik

@ -286,7 +286,7 @@ if [[ "${ADVANCED}" = "true" ]] ; then
;; ;;
esac esac
else else
if [ $DISTRO_PHP_VERSION == "7.0" ]; then if [ ! $DISTRO_PHP_VERSION == "5" ]; then
CheckPackage php${DISTRO_PHP_VERSION}-xml CheckPackage php${DISTRO_PHP_VERSION}-xml
fi fi
fi fi
@ -313,6 +313,11 @@ if [[ "${RECEIVER_PORTAL_INSTALLED}" = "true" ]] && [[ "${ADVANCED}" = "false" ]
sudo mv ${LIGHTTPD_DOCUMENT_ROOT}/data/settings.xml ${LIGHTTPD_DOCUMENT_ROOT}/data/settings.backup.xml sudo mv ${LIGHTTPD_DOCUMENT_ROOT}/data/settings.xml ${LIGHTTPD_DOCUMENT_ROOT}/data/settings.backup.xml
fi fi
if [ -f ${LIGHTTPD_DOCUMENT_ROOT}/index.lighttpd.html ]; then
echo -e "\e[94m Removing default Lighttpd index file from document root...\e[97m"
sudo rm ${LIGHTTPD_DOCUMENT_ROOT}/index.lighttpd.html
fi
echo -e "\e[94m Placing portal files in Lighttpd's root directory...\e[97m" echo -e "\e[94m Placing portal files in Lighttpd's root directory...\e[97m"
sudo cp -R ${PORTAL_BUILD_DIRECTORY}/html/* ${LIGHTTPD_DOCUMENT_ROOT} sudo cp -R ${PORTAL_BUILD_DIRECTORY}/html/* ${LIGHTTPD_DOCUMENT_ROOT}

Wyświetl plik

@ -420,6 +420,7 @@
<input type="checkbox" name="hideNavbarAndFooter" value="TRUE"<?php ($hideNavbarAndFooter == 1 ? print ' checked' : ''); ?>> Enable navigation and footer auto hiding. <input type="checkbox" name="hideNavbarAndFooter" value="TRUE"<?php ($hideNavbarAndFooter == 1 ? print ' checked' : ''); ?>> Enable navigation and footer auto hiding.
</label> </label>
</div> </div>
<br />
<div class="checkbox"> <div class="checkbox">
<label> <label>
<input type="checkbox" name="enableFlights" value="TRUE"<?php ($enableFlights == 1 ? print ' checked' : ''); ?><?php ($settings::db_driver == "xml" ? print ' disabled' : ''); ?>> Enable flights link. <input type="checkbox" name="enableFlights" value="TRUE"<?php ($enableFlights == 1 ? print ' checked' : ''); ?><?php ($settings::db_driver == "xml" ? print ' disabled' : ''); ?>> Enable flights link.