Merge pull request #430 from nhubbard/develop

Close #374
This commit is contained in:
Michael Teeuw 2016-09-07 08:31:06 +02:00 committed by GitHub
commit a2497d7564
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed ### Fixed
- Fix typo in installer. - Fix typo in installer.
- Add message to unsupported Pi error to mention that Pi Zeros must use server only mode, as ARMv6 is unsupported. Closes #374.
- Fix API url for weather API. - Fix API url for weather API.
### Updated ### Updated
@ -20,7 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added ### Added
- Brazilian Portuguese Translation. - Brazilian Portuguese Translation.
- Option to enable Kios mode. - Option to enable Kiosk mode.
- Added ability to start the app with Dev Tools. - Added ability to start the app with Dev Tools.
- Added ability to turn off the date display in `clock.js` when in analog mode. - Added ability to turn off the date display in `clock.js` when in analog mode.
- Greek Translation - Greek Translation

View File

@ -28,6 +28,7 @@ ARM=$(uname -m)
if [ "$ARM" != "armv7l" ]; then if [ "$ARM" != "armv7l" ]; then
echo -e "\e[91mSorry, your Raspberry Pi is not supported." echo -e "\e[91mSorry, your Raspberry Pi is not supported."
echo -e "\e[91mPlease run MagicMirror on a Raspberry Pi 2 or 3." echo -e "\e[91mPlease run MagicMirror on a Raspberry Pi 2 or 3."
echo -e "\e[91mIf this is a Pi Zero, you are in the same boat as the original Raspberry Pi. You must run in server only mode."
exit; exit;
fi fi