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

Subcategories

  • New upcoming features available in the beta branch will be announced here.

    16 Topics
    137 Posts
    kayakbabeK

    @sdetweil said in Electron v20 will coming with next release but...:

    @kayakbabe where do you see 12?

    all is ok to 19

    https://github.com/fivdi/epoll/issues/42
    Top comment by David

  • You have a cool idea for the core? Post it here.

    143 Topics
    774 Posts
    S

    @SimoneMSR we don’t run on Android. So I’m not sure we are talking about the same thing

    MagicMirror is a single page web server. The page is composed of live JavaScript code in multiple modules to dynamically render their little bits of the page at runtime

    So you would download the empty MagicMirror project somewhere. Add modules, configure the modules. Test
    And distribute that. Or make that the server the client devices connect to using the native device browser, which they would already have

  • Think you found a bug? Check with others to see if it’s just you. Real bug reports can be submitted via GitHub.

    209 Topics
    1k Posts
    F

    @sdetweil ok thx

  • 95 Topics
    1k Posts
    S

    @plainbroke we are all learning new stuff every day!!! Glad you got it!!

  • Regions

    34
    25 Votes
    34 Posts
    97k 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.