@OwenLars Unfortunately I am not too familiar with the project and don’t have a TodoIst account to test this myself. Have you logged an issue on the modules Github page? Maybe the author can have a look at it?
Read the statement by Michael Teeuw here.

Posts
-
RE: MMM-Todoist Project ID Conversion
-
RE: MMM-Todoist Project ID Conversion
@OwenLars Have you tried [“166564794”, “78954ABC98ESD”]. This passes a collection of strings instead of a numbers. The module should handle it as a string instead of a number.
-
RE: not updating
@Eagleyes27 I recently updated the NOAA3 module. You can use my fork which you can find here: NOAA3.
-
Accuweather Updates
AccuWeather Updates coming
As received this evening from AccuWeather.
AccuWeather is excited to share important updates coming this summer to the AccuWeather API Developer Portal, which is designed to elevate your experience and ensure you get the most from our industry-leading weather data.
What is Changing? To better support your development needs, AccuWeather is introducing a more powerful and streamlined platform, along with updated subscription options to suit every stage of your journey:
• Discontinuation of Free Limited Trial Packages
AccuWeather’s current Free Limited Trials for Core Weather and MinuteCast® will be retired with the new portal launch.
• Introducing New 14-Day Free Trials
Experience the full value of our APIs with an all-new 14-Day Core Weather Trial (up to 500 API calls/day) or 14-Day MinuteCast® Trial (up to 50 calls/day), including all API endpoints available for testing.
• New Low-Cost Starter Package
Once your trial ends, you can keep building with our affordable Starter package, which offers essential API access at a competitive monthly rate.
• Enhanced Account Security
To best protect your data and improve overall security, existing users on Standard, Prime, Elite, or MinuteCast® packages will be prompted to reset their passwords at launch.
• What to Expect
As AccuWeather approaches the launch, we will provide step-by-step guidance on migrating your account, selecting a new plan, and maximizing the benefits of the updated portal. We remain committed to delivering the tools and data you rely on — with a seamless, modernized experience to match. To stay informed, visit developer.accuweather.com.
Thank you for choosing AccuWeather®, the world’s most trusted and accurate source of weather forecasts and warnings. We look forward to supporting your development journey with reliable, scalable, and trusted weather data solutions. -
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz Do you mind sharing your ICS, anonymized off course.
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz You can do the following from the docker host,
docker compose up -d
this will launch you container. Then you can run the following commanddocker exec -it magicmirror bash
replacingmagicmirror
with your container name. This essentially puts you into the MagicMirror directory. You can then acces the debug log from there. -
MMM-OpeningHours
I have been using the MMM-OpeningHours module for a few years now and it has always been working great and probably still works for all users of the modules by @Menturan . Thanks for an awesome module.
Google has replaced the library
@google/maps
with a newer library@googlemaps/google-maps-services-js
. I must mention that the old library still works.I have updated the module to use the latest library from google and have refactored the node_helper.js code a bit. I have also update the package.json and the README and have opened a PR. As the module has been last updated about 3 years ago I am not sure if it is still maintained.
If anybody want to switch to the newer version you are welcome to use my fork. I just love this module as I can track all my fav places.
You can find the fork here: MMM-OpeningHours
-
RE: Starting MM Crontab
@sdetweil A few things:
The main issue being:
MagicMirror is now using a flat npm config, and the start scripts are handled differently,node --run start:x11
is not a valid Node.js command — unless you are using a custom wrapper or an internal script, this will fail silently or do nothing.As Crontab runs in a minimal environment, so any graphical (X11) application must explicitly export DISPLAY. Previously I had the command as
DISPLAY=:0 npm start
. Now, I had toexport DISPLAY=:0
first and then start MM. -
RE: Starting MM Crontab
@sdetweil Stupid question, how do I mark this as resolved?