mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
Merge branch 'develop' into fixdefmod
This commit is contained in:
commit
f31049cf69
@ -4,11 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [2.1.1] - Unreleased
|
## [2.1.1] - Unreleased
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Installer: Use init config.js from config.js.sample.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Add loaded function to modules, providing an async callback.
|
- Add loaded function to modules, providing an async callback.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Update .gitignore to not ignore default modules folder
|
- Update .gitignore to not ignore default modules folder.
|
||||||
|
- Remove white flash on boot up.
|
||||||
|
|
||||||
|
|
||||||
## [2.1.0] - 2016-12-31
|
## [2.1.0] - 2016-12-31
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
Copyright © 2016 Michael Teeuw
|
Copyright © 2016-2017 Michael Teeuw
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person
|
Permission is hereby granted, free of charge, to any person
|
||||||
obtaining a copy of this software and associated documentation
|
obtaining a copy of this software and associated documentation
|
||||||
|
@ -113,6 +113,9 @@ else
|
|||||||
exit;
|
exit;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Use sample config for start MagicMirror
|
||||||
|
cp config/config.js.sample config/config.js
|
||||||
|
|
||||||
# Check if plymouth is installed (default with PIXEL desktop environment), then install custom splashscreen.
|
# Check if plymouth is installed (default with PIXEL desktop environment), then install custom splashscreen.
|
||||||
echo -e "\e[96mCheck plymouth installation ...\e[0m"
|
echo -e "\e[96mCheck plymouth installation ...\e[0m"
|
||||||
if command_exists plymouth; then
|
if command_exists plymouth; then
|
||||||
|
@ -28,7 +28,8 @@ function createWindow() {
|
|||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: false,
|
nodeIntegration: false,
|
||||||
zoomFactor: config.zoom
|
zoomFactor: config.zoom
|
||||||
}
|
},
|
||||||
|
backgroundColor: "#000000"
|
||||||
}
|
}
|
||||||
|
|
||||||
// DEPRECATED: "kioskmode" backwards compatibility, to be removed
|
// DEPRECATED: "kioskmode" backwards compatibility, to be removed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user