@toktias you are running node v4.2.6 the current version is v10.4.1 https://nodejs.org/en/
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-NOAA - Another Weather Module
-
RE: Error during installation of MM2
@rudibarani the command you used to install MM is deprecated.
Use
bash -c "$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)"instead. -
RE: Different Calendars in different colors
@amanzimdwini in the upcoming version there will be color support https://github.com/MichMich/MagicMirror/tree/develop/modules/default/calendar#calendar-configuration
-
RE: Can somebody with permissions rename my posting bc I have renamed my module...
i think it will be handy if the creator of a topic can edit the first post unlimited to add updates, at least in the showcase section
-
RE: Alert font size
@Varguit the problem is that there are some inline styles, some css ninja should get you going
.ns-alert span.light[style], .ns-alert span.thin[style] { font-size: 60px !important; } -
MMM-TTS
An offline text-to-speech module
[card:fewieden/MMM-TTS]
For developers:
this.sendNotification('MMM-TTS', 'This is a text to read. Hello World!'); -
RE: Basic configuration issues with compliments & calendar modules
@mh77 you have to type booleans without quotes
disabled: true,fade: falseanddisplaySymbol: false -
RE: MMM-Fuel
Changelog:
4 new config options
- shortenText: shorten name and address after certain characters
- showAddress: show address of gas station or not
- showOpenOnly: show only gas stations that are open or all
- iconHeader: display icon in header
[card:fewieden/MMM-Fuel]
-
RE: NOOB needs an assist with basic module configuration
cd ~/MagicMirror nano config/config.js //insert your appid for the weather app ctrl+x //confim npm start -
RE: change current weather colors - time and wind
@karde I’m assuming you’re using this module https://github.com/RedNax67/MMM-WunderGround
due to the sunset and sunrise time is a span element and the following sibling of the icon you can apply this css rule in custom.css
.wi.dimmed.wi-sunrise + span, .wi.dimmed.wi-sunset + span { color: orange; } -
RE: MMM-voice
@Nonamexp are you running the installer as root? all the directories in the screenshot are in root
-
RE: Does anyone know how to make the iFrame module refresh periodically?
@PeppaPigKilla the code that was added by you is after the return, so the code will never be reached.
I suggest an interval which calls
updateDom, which will be created after theDOM_OBJECTS_CREATEDbroadcast -
RE: MMM-Ruter (for Oslo and Akershus in Norway)
@laumb
cd ~/MagicMirror/modules/MMM-Ruterthengit pull -
RE: Compliments not displaying
@l1613532 this code isn’t working properly, you have to do
if (this.config.remoteFile != null) { var self = this; this.complimentFile( function(response){ self.config.compliments = JSON.parse(response); }); } -
RE: MMM-voice
@Mykle1 There was once a fairytale, where a mirror took place
Solution will follow on sunday.
-
RE: Compliments module stops cycling compliments
@maxfarrior you’re right that is a bug.
The way javascript handles variables are usually call by value, but for objects (this includes arrays) it is call by reference.
So what happens in line 104 is the following: The variable compliments doesn’t get cloned, so that the values are equal. What happens is they are the same array and point to the same reference to the memory. That means in the following lines not only compliments get changed, also
this.config.compliments.afternoongets changed.So in the beginning your config looks like that
config: { compliments: { afternoon: ["I'm the only one here"], anytime: ["I'm getting repeated"] } }after the first iteration it looks like this
config: { compliments: { afternoon: ["I'm the only one here", "I'm getting repeated"], anytime: ["I'm getting repeated"] } }after the second
config: { compliments: { afternoon: ["I'm the only one here", "I'm getting repeated", "I'm getting repeated"], anytime: ["I'm getting repeated"] } }and so on …
So to fix that, we have to create a real clone not only a pseudo one.
I already created a bugfix for that here
-
RE: MMM-Fuel
Version 2.1.2
Added
- Config option
showDistancehttps://github.com/fewieden/MMM-Fuel/pull/49 - Missing jsdoc documentation
Changed
- Dependency update
Fixed
- Deinit map had a hardcoded index for markers.
https://github.com/fewieden/MMM-Fuel
[card:fewieden/MMM-Fuel]
- Config option
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
plans are:
- i18n
- integration of my voice recognition module (also wip), this goes with more use of the api like fixtures etc.
- cup support
- smaller screen support
probably I’m going one step back and will put league codes configurable again
-
RE: Magic Mirror on an iPad?
@ibuildmirror you have to run the magicmirror in serveronly mode on a device and access the mirror via safari on your ipad
-
RE: MMM-AlarmClock
Just released version 2.0.1
- Fixed sound fading for alerts
- Added Korean translations
https://github.com/fewieden/MMM-AlarmClock
[card:fewieden/MMM-AlarmClock]