MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 3
    • Followers 35
    • Topics 30
    • Posts 1,700
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: MMM-NOAA - Another Weather Module

      @toktias you are running node v4.2.6 the current version is v10.4.1 https://nodejs.org/en/

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • 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.

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • 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

      posted in Feature Requests
      strawberry 3.141S
      strawberry 3.141
    • 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

      posted in Forum
      strawberry 3.141S
      strawberry 3.141
    • 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;
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • 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!');
      
      posted in Utilities text-to-speech
      strawberry 3.141S
      strawberry 3.141
    • RE: Basic configuration issues with compliments & calendar modules

      @mh77 you have to type booleans without quotes

      disabled: true , fade: false and displaySymbol: false

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • 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]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: NOOB needs an assist with basic module configuration

      @roomane

      cd ~/MagicMirror
      nano config/config.js
      //insert your appid for the weather app
      ctrl+x
      //confim
      npm start
      
      posted in Forum
      strawberry 3.141S
      strawberry 3.141
    • 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;
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-voice

      @Nonamexp are you running the installer as root? all the directories in the screenshot are in root

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • 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 the DOM_OBJECTS_CREATED broadcast

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Ruter (for Oslo and Akershus in Norway)

      @laumb cd ~/MagicMirror/modules/MMM-Ruter then git pull

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • 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);
           });
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-voice

      @Mykle1 There was once a fairytale, where a mirror took place

      Solution will follow on sunday.

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • 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.afternoon gets 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

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Version 2.1.2

      Added

      • Config option showDistance https://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]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • 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

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • 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

      posted in Tutorials
      strawberry 3.141S
      strawberry 3.141
    • 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]

      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • 1 / 1