@AndyHazz Do you mind sharing your ICS, anonymized off course.
Read the statement by Michael Teeuw here.
Module Developers
You have developed a module for the MagicMirror? Join the group and get a "Module Developer" badge!
Posts
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz Unfortunately, I don’t know if I can help any further here. The error message (
[ERROR] table not found in HTML.
) is indeed from MMM-Scrapey - I have created a pull request for the module to improve logging, at least in the future. -
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz said in 2.32.0 Calendar module limitDays and excludedEvents stopped working:
but in case you’re onto something
Not sure, but you have a rather old version of MMM-Remote-Control which is only compatible to a limited extent with MM 2.32.0. If you update MMM-Remote-Control, the start of MM may not abort like above.
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz said in 2.32.0 Calendar module limitDays and excludedEvents stopped working:
Looks like an issue with MMM-Remote-Control.Which version are you using? Run
grep '"version":' package.json
in MMM-Remote-Control’s directory to find out. -
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. -
RE: MMM-OpeningHours
@mumblebaj Cool!
But one hint because I saw this change to the license file: You cannot relicense GPL software under MIT. If you fork a project under the GNU General Public License (GPL), your modified version must also stay under GPL. The GPL’s rules are strict — you can’t change it to a more permissive license like MIT.
-
RE: MMM-EnvCanada stopped working ...
@sdetweil it is a big change. I have just moved, so I don’t know when I will have time to work on this. I am hoping somebody fixes the provider for the default module and then I can piggy back on their work
-
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.