@johnster000 Nice! You could check the “Hints For Devs” for your modules on the modules list. Some of these are just nitpicks; you can decide for yourself whether to fix them or not :)
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Tasklist
-
RE: MMM-LibraryMonitor
@HeikoGr The repository (https://github.com/HeikoGr/MMM-LibraryMonitor) is not available :(
-
RE: Sharing a concept that I am working on for my daughter's house - MagicMirror layout
@sdetweil Yes, but not in this thread :)
My module is MMM-AtomVisualizer.
-
RE: MMM-Letterboxd Dependencies FYI
@Qthulhu It would be great if you could create a PR so it can be included in the module README :)
-
RE: remote control help needed
This minimal config works for me:
let config = { address: "0.0.0.0", port: 8080, ipWhitelist: [], modules: [ { module: "MMM-Remote-Control", position: "top_left", }, { module: "MMM-JukeBox", position: "top_left", } ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") { module.exports = config; } -
RE: remote control help needed
@tommyk Update MMM-JukeBox and it should work now :)
-
RE: Getting Startet - ablsulute newbie
Don’t know why node 24 causes so much trouble.
There is an issue with the newest versions of node v24 and v26. Here is our related issue: https://github.com/MagicMirrorOrg/MagicMirror/issues/4150
@karsten13 implemented a workaround in the develop branch, so our next release will be working with these new node versions. It’s a frustrating situation for new users, but it was caused externally.
-
RE: Calendar events broadcasting, nothing showing...
I tracked this down to a likely root cause: after the HTTPFetcher 304 change, some consumers were trying to process empty responses. In PR #4180, I fixed that for calendar and other consumers.
-
RE: electronSwitches in config.js — am I reading the code wrong, or does it not actually work?
@rkorell That should already be fixed in the develop branch by https://github.com/MagicMirrorOrg/MagicMirror/pull/4161 and will be in the next release. It would be great if you could switch to the develop branch and test it before the release :) Good analysis, by the way!
-
RE: Problems with KristjanESPERANTO/MMM-PublicTransportHafas
@wimthoelke
Please update to the new version (v4.4.3). Your stationID works for me.
If this doesn’t work: use the profiledbweb.
If this doesn’t work, checkout this module: MMM-PublicTransportHub -
RE: Problems with KristjanESPERANTO/MMM-PublicTransportHafas
@Volkae said:
everything worked fine, but since two days it does not work anymore. It only signs “Abfahrtsschnittstelle nicht erreichbar”.There have been some recent issues with certain APIs (we use different ones depending on the profile). Tell me which profile you’re using and which station and I’ll check. If you don’t want to share the station here, you can also send it to me via private message.
-
RE: Apply color to future events in CalendarExt3
this used to be default behavior
Are you sure? Do you remember in which version it worked that way? I’m not aware of it ever being the default, but I could be wrong :)
-
RE: Apply color to future events in CalendarExt3
@sdetweil CX3 should use each event’s source-calendar color even when multiple calendars are shown together in the same month view. Does it work with multiple calendars?
-
RE: Apply color to future events in CalendarExt3
@kkmirr04 Does it work when you add this to your custom.css?
.CX3 .event.singleday .headline .title, .CX3 .event.singleday .headline .time { color: var(--calendarColor); } -
RE: April update says "New major version of npm available" - should I install this?
@Richard238 I haven’t had any problems with this new version.
-
RE: Default Calendar Not Loading Events After New MM Update
@angeliKITTYx This shouldn’t happen with the just released new version v2.36.0. I recommend to update :)
-
RE: Default Calendar Not Loading Events After New MM Update
@kristjanesperanto what do you think of this?
Hmm… I didn’t expect something like that in the current release. But I won’t be able to take a closer look at it right away. It would be interesting to see if this also happens in the develop branch.
-
RE: Request loop & "Loading..." in standard weather module (Open-Meteo) after update
Currently, if a client reconnects during the backend’s “protection phase,” it stays on “Loading…” until the next scheduled fetch. It would be the icing on the cake if the module could immediately push the cached data to a newly connected client, instead of making it wait for the next real API call.
Good suggestion. I’ve opened a PR (https://github.com/MagicMirrorOrg/MagicMirror/pull/4121) to implement that :)
-
RE: MMM-XboxFriends - Showing your xbox online friends and their status
@iamktothek You don’t need
node-fetch. ThefetchAPI is built-in meanwhile :-)