@majorc said in Cursor shown in v2.16.0:
Or do I have to wait for version 17?
In v2.16.0 we have electron v11, in current develop branch (which will become v2.17.0 in October) we have upgraded to electron v13.
@majorc said in Cursor shown in v2.16.0:
Or do I have to wait for version 17?
In v2.16.0 we have electron v11, in current develop branch (which will become v2.17.0 in October) we have upgraded to electron v13.
Unfortunately, I can’t tell you that. I am only responsible for the display layer, not for the weather data 🙂
I’m aware of this …
Is it the usual case on your mirror that the displayed radar images do not match the reality?
saw such differences this week the first time
What I can see is that RegenRadar.de and RainViewer have different scales. With RainViewer it needs a much higher degree of cloudiness to be displayed on the map.
will oberve this but the differences are heavy and AFAIS not only explainable with the different scales. Meanwhile I was already asking myself if the rain layer is showing a total different location …
@KristjanESPERANTO said in Automatic checking of all MagicMirror² modules:
After you showed me the examples, I tinkered a bit with a simple frontend (without dependencies): check it out. I just have to fill it with real data.
cool, exactly what I thougth of …
looking at your example json
{
"name": "MMM-PublicTransportHafas",
"image": "https://raw.githubusercontent.com/KristjanESPERANTO/MMM-PublicTransportHafas/main/img/Goerdelerring_all.png",
"maintainer": "KristjanESPERANTO",
"link": "https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas",
"category": "Traffic",
"tags": ["Schedule", "Public Transport", "Traffic", "HAFAS"],
"text": "This module displays real-time departure times for public transportation.",
"description": "Stay informed about the upcoming departures from your local public transit stations."
},
there are only a few things which are not available via github api (image, category).
category and tags are similar, do we still need a category?
tags are similar to api topics (may without magicmirror key words)
If you use the WebUI the changes are made here:
pi@pi4:~ $ cat /usr/share/dispsetup.sh
#!/bin/sh
if ! grep -q 'Raspberry Pi' /proc/device-tree/model || (grep -q okay /proc/device-tree/soc/v3d@7ec00000/status 2> /dev/null || grep -q okay /proc/device-tree/soc/firmwarekms@7e600000/status 2> /dev/null || grep -q okay /proc/device-tree/v3dbus/v3d@7ec04000/status 2> /dev/null) ; then
if xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off --dryrun ; then
xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off
fi
fi
if [ -e /usr/share/tssetup.sh ] ; then
. /usr/share/tssetup.sh
fi
exit 0
So editing this script should work for command line.
which raspberry pi os did you install?
It must be one with desktop
the default weather module still uses 2.5 and it works
at the moment, yes.
I looked into their api stuff and onecall v2.5 is not mentioned anymore. The normal endpoints weather and forecast are still on v2.5.
Problem: For onecall 3.0 you need a special api key (as already mentioned here) with a subsciption where you have to give your payment data (1000 request free per day, limit is 2000 per day but you can set your limit to 1000 if you want it for free … ).
I think we will get problems/questions to this for the default weather module too.
So (for default weather module) if you use endpoints weather and forecast and old onecall v2.5 everthing works out of the box with old api keys, if someone use new onecall v3.0 he needs an api key for 3.0 and has to set apiVersion: "3.0", in the config …
from your todo list
Is there also a GitLab API?
yes, as example you can look at MMM-RepoStats
Another thing is what the source of the list should be, still the wiki (which is very error prone since anyone can edit things).
Alternatively, you could store a list in your repo and we need something for users to add to their repo (e.g. as a PR in the repo or with website functionality).
But maybe there are even better ideas.
@Ray said in updatenotification:
is it possible to instruct ignoremodules not to look for MagicMirror updates
looking at the sources this is not possible at the moment but it is easy to implement. Can you open an issue on github for this? Thanks.
you can run
MM_CONFIG_FILE=config/config.js npm run server
and
MM_CONFIG_FILE=config/config2.js npm run server
Same works for npm run start.
You have to use different ports in your configs.