Read the statement by Michael Teeuw here.
!Update available for MMM-WunderGround module.
-
Can someone give me a heads up on what I need to do when i get this alert on my MM. How do i update to remove message?
“!Update available for MMM-WunderGround module.”
Thanks!
-
@l8kerjuan go to your ~/MagicMirror/module/MMM-WunderGround dir and type:
git pull
That should pull any update
then type npm install to make sure there are no changes in dependencies…
Then restart your mirror :)
-
How do you disable this kind of alert? I’ve modified the module substantially and don’t want to update it and don’t want to see the update messages.
Also, where does the code reside that fires off these update checks?
Thanks,
Ren -
@Renfield said in !Update available for MMM-WunderGround module.:
How do you disable this kind of alert? I’ve modified the module substantially and don’t want to update it and don’t want to see the update messages.
Also, where does the code reside that fires off these update checks?
Thanks,
RenGo into your config.js and either // in front of the notification module or delete the entry altogether…
-
@Renfield If you would like to disable all update notifications you can do as @cowboysdude has written (remove the
updatenotification
module).Alternatively (edit: if you only want to disable update notifications for the
WunderGround
module):
Go to~/MagicMirror/module/MMM-WunderGround
and remove the git remote with the commandgit remote remove origin
. If at any point you want to enable updates, orgit pull
command again, you can add the remote back withgit remote add origin https://github.com/RedNax67/MMM-WunderGround.git
.Source for the module: https://github.com/MichMich/MagicMirror/tree/master/modules/default/updatenotification
-
@Jopyth
Works like a charm. Many thanks to you and @cowboysdude.I should probably learn more about Git and create a repo of my own based on RedNax67’s great work. That way I can keep tinkering and learning.