A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Docker Watchtower container restarting and mm container errors after upgrade

    Solved
    9
    0 Votes
    9 Posts
    573 Views
    S
    @karsten13 said in Docker Watchtower container restarting and mm container errors after upgrade: I found a good documented PR in another project which explains the dbus errors in detail. Thanks for providing the link, interesting background.
  • Magic Mirror Scripts - "Unable to determine upstream"

    Unsolved
    13
    0 Votes
    13 Posts
    269 Views
    S
    @BKeyport I fixed my script to handle that
  • v2.33.0 Calendar module excludedEvents "until" stopped working

    Unsolved
    1
    0 Votes
    1 Posts
    91 Views
    J
    Hello together I have noticed that the excludedEvents function with the “until” parameter no longer works. The last time I used the function was version 18.3.24, when everything worked. While searching for the error, I came across this article https://forum.magicmirror.builders/topic/19767/2.32.0-calendar-module-limitdays-and-excludedevents-stopped-working?page=1 or this issue https://github.com/MagicMirrorOrg/MagicMirror/issues/3841. How was the error found (Reproducible) I want to hide a recurring event until X days before it starts. In the test case, the event is called “DailyTask”. This repeats every 2 days. I use the configuration excludedEvents: [{filterBy: 'DailyTask', until: '2 days'}] The appointments are displayed unchanged on the MM. I then only used the excludedEvents: [{filterBy: 'DailyTask''}] command. Now no events with the name “DailyTask” are displayed. Which leads me to conclude that the “until” parameter no longer works. it does not matter whether days, weeks or months are used Current Config for Calendar: { module: "calendar", header: "Kalender", position: "bottom_left", config: { excludedEvents: [{filterBy: 'DailyTask', until: '2 days'}], fade: true, fadePoint: 0.75, // Possible values: 0 (top of the list) - 1 (bottom of list) tableClass: "medium", // Possible values: xsmall, small, medium, large, xlarge. Default value: small. maximumEntries: 18, // default 10 showLocation: true, maxTitleLength: 40, // values 10-50 maxLocationTitleLength: 20, // values 10-50 // hidePrivate: false, coloredText: true, coloredSymbol: true, coloredBackground: true, calendars: [ { // Test-Kalender fetchInterval: 300000, // 5 min * 12 = 1h symbol: "calendar-plus", color: "#FFFFFF", // Dunkleres Grün #1ea30f etwas helleres Grün #43ff64d9 symbolClassName: "fa-regular fa-", bgColor: "rgba(0, 0, 0, 0.02)", name: "Test-Kalender", url: "https://calendar.google.com/calendar/ical/******************.ics" } ] } MM was reinstalled a few days ago. A Raspberry Pi 3B+ is used Operating System: Debian GNU/Linux13 (trixie) Kernel: Linux 6.12.47+rpt-rpi-v8 Architecture: arm64 MM version: v2.33.0 i use pm2 All modules with the exception of the calendar module were deactivated for the test. my solution I think I have found the problem in the calendarfetcherutils.js file. I have the following line 163: let { excluded, eventFilterUntil } = this.shouldEventBeExcluded(config, title); replaced with this code: let { excluded, until: eventFilterUntil } = this.shouldEventBeExcluded(config, title); Subsequent tests were positive for me, but I cannot judge whether the customisation has any further effects. Unfortunately I’m not a programmer, just a “nerd” =) can someone verify this and possibly open a bug? Best regards Jacky
  • MMM- Carousel

    Solved
    5
    0 Votes
    5 Posts
    214 Views
    KristjanESPERANTOK
    @Mati_93 This sort of thing happens to others from time to time as well. It would be really interesting to know how you came across the old version 🕵️. We have the module list, which refers to the fork from shabatm since a while. Did you come across the old version in the forum?
  • MMM-Traffic stuck on loading

    Unsolved
    9
    1
    0 Votes
    9 Posts
    185 Views
    S
    @Keithj edit MMM-Traffic.js change these lines (79/80) self.errorMessage = payload.error.message; self.errorDescription = payload.error.description; to self.errorMessage = e.message; self.errorDescription = e.description; and restart MM let me know…
  • Using different configs

    Unsolved
    6
    0 Votes
    6 Posts
    133 Views
    C
    @sdetweil ok, that makes sense, caching might be an issue!
  • Cannot access MM2 across the network - localhost ok

    Solved
    9
    0 Votes
    9 Posts
    295 Views
    S
    @dangerousden glad you got it working again!!
  • This command "node --run install-mm" causes error "-bash: node: command not found"

    Unsolved
    6
    0 Votes
    6 Posts
    290 Views
    S
    @CaptainKen no. You need to install node 22.18.0 You installed node 20
  • Trixie/node v24 - timeouts on request to the internet

    Unsolved
    6
    0 Votes
    6 Posts
    356 Views
    S
    @Mr.Sponti do you have the gpu hardware enabled? If not then I think electron tries to emulate it, probably w the vlc content
  • Calendar failed to load - check the logs

    Unsolved
    4
    1 Votes
    4 Posts
    158 Views
    S
    @Richard238 said in Calendar failed to load - check the logs: about a minute ago If perhaps it could show the nature of the error? what does that mean? we requested the ics data from the calendar provider using the URL you provided in the config and the request failed, timeout… we don’t know why or anything more and we gave you all that in the messages we produced. And the route to the logs, because most of us have to look up where they are! ;-) you are LOOKING at the logs… so you must have found the route ---- as always — the logs IS the output of the MM start command, npm start node --run start npm runs server node --run server whatever you used now, you can do it manually in some terminal window OR you can code it into the system startup OR you can use a pgm that does that FOR you, aka pm2 WHERE that data is stored is up to that implementation as I do the install script, I use pm2, as it insulates me from the OS details… my script last lines is see the help echo please see the help for the pm2 command, pm2 --help echo pm2 status will show the running apps, and their runtime status SO… one could/should detect that the command is pm2 and so do pm2 --help and one core learning thing on linux ALL terminal commands , by agreed convention, provide a general help using the parameter --help so pm2 --help will tell you all the things it can do SOME commands ALSO provide a manual page (pm2 does not) which can be viewed with the man command man ls will show you the detailed help for the ls command Yes, there is a LOT to learn here…
  • MMM-RAIN-MAP covers part of the module above it

    Unsolved
    4
    0 Votes
    4 Posts
    183 Views
    S
    @RonR ctrl-+. Should zoom in
  • Sending code

    Unsolved
    3
    0 Votes
    3 Posts
    194 Views
    V
    thanks ok
  • Excessive pings to CalDAV server, like 2 per second

    Unsolved
    4
    0 Votes
    4 Posts
    233 Views
    S
    @xylyn the caldav module is getting g the data from the server To create the iCal file the MagicMirror calendar module needs I don’t know how the caldav module works at that level
  • Version 2.33.0/node v22.21.0 - Error: write EFAULT

    Unsolved
    9
    0 Votes
    9 Posts
    462 Views
    S
    @Mr.Sponti yep errors, too much ram. Etc What is this running in?
  • Version 2.33 - module 'weather' - openweathermap and 'One Call by Call' plan

    Unsolved
    3
    0 Votes
    3 Posts
    209 Views
    Mr.SpontiM
    Ok, my fault, thanks a lot!
  • installing MagicMirror on my Raspberry Pi 0 w2

    Unsolved
    14
    0 Votes
    14 Posts
    1k Views
    plainbrokeP
    @Y_Garden That pi zero will run Pi-Hole pretty well on diet pi 32 bit…
  • Error: Cannot find module 'node:fs'

    Solved
    3
    0 Votes
    3 Posts
    322 Views
    H
    @sdetweil thank you for the tip. I’ve at least got things running again with this image. I’ll need to make some adjustments to get things working 100% but at least the container starts and runs now. Very strange, since there didn’t appear to be any updates to the old image I was using.
  • Module updates question

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    S
    @RonR mine matches yours, since 1974… not so much weird as exciting newness
  • MMM-NOAAForecast install fails

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    R
    Yes, that fixed it . Thanks for the help.
  • Updating an older MM

    Unsolved
    2
    0 Votes
    2 Posts
    166 Views
    S
    @ankonaskiff17 is MagicMirror auto starting? Stop it