Read the statement by Michael Teeuw here.
MagicMirror v2.1.0 Update error
-
@schlachtkreuzer6
The same approach. Add whatever you want to add, but do not modify the JavaScript module files.
Create a compliments file or add them to your config file. -
@schlachtkreuzer6
After your question I understood what I personally had done wrong, so I lost my German compliments, still have to confess this to my 8 year old boy who wrote them. Please find here an example with German text how you could modify your local config.js to show German comments:{ module: 'compliments', position: 'lower_third', config: { compliments: { "morning" : [ "Du siehst aber gut aus heute !", "Gut geschlafen ?", "Moin, Moin...." ], "afternoon" : [ "Ab Fussball spielen !", "Lass uns auf den Abend vorbereiten....", "Musik hören ?" ], "evening" : [ "Einen Cocktail ?", "Wow, Du bist aber heiss heute...", "Wollen wir heute abend weggehen ?" ] } } },
-
@Steff Remove the
"
from around the array names (morning, afternoon, evening).compliments: { morning : [ "Du siehst aber gut aus heute !", "Gut geschlafen ?", "Moin, Moin...." ], afternoon : [ "Ab Fussball spielen !", "Lass uns auf den Abend vorbereiten....", "Musik hören ?" ], evening : [ "Einen Cocktail ?", "Wow, Du bist aber heiss heute...", "Wollen wir heute abend weggehen ?" ] } }
-
@bhepler
Thanks for your hint.
I know the doc does not show them. However I understood the documentation that I will need them for an external file. So I wanted to be prepared for the move to an external file. I tested it with them inside the config.js file and it worked. Do you see any specific reason to remove them ? -
I did try to configure an external
compliments.json
file, however it seems that it is not interpreted, since I do get again the default compliments.
The file is located within the config directory.
My configuration:{ module: 'compliments', position: 'lower_third', config: { remoteFile: 'compliments.json' } },
Do you have a hint what might be wrong ?
-
@Steff Due to my own incompetence when dealing with javascript, the external file needs to have quotes around the array names. If you are expanding the arrays within the
config.js
file, then you must remove the quotes from around the names.
So this would work in theconfig.js
file:evening : [ "Einen Cocktail ?", "Wow, Du bist aber heiss heute...", "Wollen wir heute abend weggehen ?" ]
and this should work in the external compliments file:
"evening" : [ "Einen Cocktail ?", "Wow, Du bist aber heiss heute...", "Wollen wir heute abend weggehen ?" ]
It’s a bug. But I’m a Java programmer, not a Javascript programmer. I don’t know how to fix it.
-
Hi all,
After update my MM and want to open the mm via http://ip:8080 i get a blank Black screen. It comes on Win10 and also Android with Chrome.
The Majorfailure is, the rpi stop working. So i can only disconnect the power and connect again.
Has anybody else this issue?
Regals
Daniel -
No, not such a major issue with the pi.
Can you access your pi with ssh?
Take a look at
https://forum.magicmirror.builders/topic/1326/ipwhitelist-howto/
-
At the Moment it works. I have update and dist-upgrade the rpi. Thanks for helping.
-
Hi, after update
pi@raspberrypi:~ sudo git pull
…my MM does not start anymore, so i tried from terminal and getting this error:
*pi@raspberrypi:~ $ ./mm.sh
>magicmirror@2.1.0 start /home/pi/MagicMirror
>electron js/electron.jsApp threw an error during load
Error: Cannot find module ‘express-ipfilter’
at Module._resolveFilename (module.js:455:15)
at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron-prebuilt/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
at Function.Module._load (module.js:403:25)
at Module.require (module.js:483:17)
at require (internal/module.js:20:19)
at Object. (/home/pi/MagicMirror/js/server.js:13:16)
at Module._compile (module.js:556:32)
at Object.Module._extensions…js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Cannot find module ‘express-ipfilter’
at Module._resolveFilename (module.js:455:15)
at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron-prebuilt/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
at Function.Module._load (module.js:403:25)
at Module.require (module.js:483:17)
at require (internal/module.js:20:19)
at Object. (/home/pi/MagicMirror/js/server.js:13:16)
at Module._compile (module.js:556:32)
at Object.Module._extensions…js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)*