Read the statement by Michael Teeuw here.
-
This post is deleted! -
Yes, the Save feature is now working for me. Thank you very much! :)
I still get an error when I use Power > Restart MagicMirror
The software does restart correctly. Seems like a false error.
-
@Jopyth So it is a core functionality. I’m not sure hat the value is of a fixed 4 second notification is.
-
@ChrisLaurie Correct. The value is
3500
ms by default (code). This can be changed in theconfig
of thealert
module.@in_a_days Yes, that is a false error, I will probably implement it, so an error after trying to restart is just ignored.
-
@Jopyth said in [Remote-Control] Shutdown, Configure and Update your MagicMirror:
@AAPS (and everyone else): You can try the new version, but you can also go back to a previous version afterwards with the commands:
cd MagicMirror/modules/MMM-Remote-Control # or wherever you installed the Mirror and the module git checkout v1.0.0 # or the version you want
Currently, there is
v1.0.0
(which is probably the one you are on) andv1.1.0
as older versions. To check out the most recent version usegit checkout master
again.I want to update. But
git checkout master
does not work. There stands i shall usegit pull
but then there comes:
*Please, commit your changes or stash them before you can merge.
Aborting
* -
@fox Interesting. What changes did you make? I will try to give you a short
git
crash course for your case: You can get an overview viagit status
(should show changed files) andgit diff
(showing the changes themselves). If you do not care about these changes you should be able to usegit reset --hard origin/master
or if you do care about them usegit stash
, then dogit pull
, and thengit stash pop
to apply the changes again. -
@Jopyth said in [Remote-Control] Shutdown, Configure and Update your MagicMirror:
@fox Interesting. What changes did you make? I will try to give you a short
git
crash course for your case: You can get an overview viagit status
(should show changed files) andgit diff
(showing the changes themselves). If you do not care about these changes you should be able to usegit reset --hard origin/master
or if you do care about them usegit stash
, then dogit pull
, and thengit stash pop
to apply the changes again.Thank you!
What for a fantastic update! I tested nearly every module and everythink worked fine.
You refactored also the config file during saving. Awesome! Nice job. -
@Jopyth I forked your project and am looking into adding the functionality to toggle back and forth between different configurations with one click using the remote page (like having a set of different config files). Is this proposed change on your to do list as well?
-
Is there anything I need to do to update instead of just putting “git pull” in ~/MagicMirror/modules/MMM-Remote-Control ?
-