A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • Regions

    34
    25 Votes
    34 Posts
    98k Views
    R

    0250ebe0-9390-4080-8e70-feb4e71b7d80-image.png

  • Help needed: Automatic Node Version Reference

    3
    0 Votes
    3 Posts
    3k Views
    D

    The commands in nodenv are implemented in scripts. While, commands from nvm are implemented in functions, which means all the 4000+ line of code have to be parsed on shell startup and increases the shell init time dramatically. nodenv initializes much faster.

  • [Enhancement] Translation system

    13
    1 Votes
    13 Posts
    8k Views
    qu1queQ

    @sdetweil

    Yeah, it seems now is working. Thanks!

  • Discussion: Simplify the core.

    1
    1 Votes
    1 Posts
    1k Views
    MichMichM

    Since I open sourced MagicMirror², I have received many awesome pull requests adding a lot of nice features to the Magic Mirror core. I am very grateful for that! Unfortunately, this comes with a downside: the application gets a lot more complicated.

    I started an issue on GitHub to discuss the idea of simplifying the core of MagicMirror². Please let me know what you think! (Preferably in that issue).

    https://github.com/MichMich/MagicMirror/issues/1860

    Thanks!

  • Flushing pm2 logs

    6
    0 Votes
    6 Posts
    14k Views
    E

    I just want to add, that using pm2 flush in a script (for restart purposes) may not work as expected. The next operation will start immediately, before flush completes, and thus the new thread will already start writing to the file, blocking it from getting cleared.

    You need to wait for the entire thread to finish, like this:

    pm2 flush; pm2 start mm; echo "this doesn't clear the logs"; pm2 flush && pm2 start mm; echo "now it works";
  • Developers running Windows 10.

    8
    0 Votes
    8 Posts
    8k Views
    A

    i installed Win10 and i have to say that im suprised in good way. my computer works faster and seems to be better :D but i will see how it will be working after some weeks :)

  • Releasing stable

    22
    0 Votes
    22 Posts
    15k Views
  • Installer Script

    1
    0 Votes
    1 Posts
    4k Views
    MichMichM

    I’ve just overhauled the installer script.

    It now checks if Node needs to be upgraded or installed and gives a bit more visual feedback. It will also prevent overwriting older installations.

    If you can, please test it and let me know if it works for you.