From fd2919fd1ca90b08557d88d49cf6effa1ebe05ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= Date: Tue, 18 Apr 2017 23:14:07 -0300 Subject: [PATCH 1/3] Remove commented log not used in js/socketclient.js --- js/socketclient.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/socketclient.js b/js/socketclient.js index 8ea468a8..baead68e 100644 --- a/js/socketclient.js +++ b/js/socketclient.js @@ -22,7 +22,6 @@ var MMSocket = function(moduleName) { // register catch all. self.socket.on("*", function(notification, payload) { if (notification !== "*") { - //console.log('Received notification: ' + notification +', payload: ' + payload); notificationCallback(notification, payload); } }); From 98dc69893efe2d7c8383aae94149ee8fe36efbd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= Date: Sat, 29 Apr 2017 23:25:57 -0300 Subject: [PATCH 2/3] Fix spelling Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e44d591c..d772fd61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Add test of match current week number on clock module with showWeek configuration. - Add test default modules present modules/default/defaultmodules.js. - Add unit test calendar_modules function capFirst. -- Add test for check if exits the directories present in defaults modules. +- Add test for check if exists the directories present in defaults modules. ### Updated - Added missing keys to Polish translation. From a60f4e3bada7b02e31c1fad1d0e69556d0eeacc5 Mon Sep 17 00:00:00 2001 From: Vladimir Filimonov Date: Sat, 6 May 2017 21:42:02 +0300 Subject: [PATCH 3/3] fixing issue https://github.com/MichMich/MagicMirror/issues/884 --- installers/raspberry.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installers/raspberry.sh b/installers/raspberry.sh index a76c1a9e..ecdcc842 100644 --- a/installers/raspberry.sh +++ b/installers/raspberry.sh @@ -150,8 +150,7 @@ fi # Use pm2 control like a service MagicMirror read -p "Do you want use pm2 for auto starting of your MagicMirror (y/n)?" choice -if [[ $choice =~ ^[Yy]$ ]] -then +if [[ $choice =~ ^[Yy]$ ]]; then sudo npm install -g pm2 sudo su -c "env PATH=$PATH:/usr/bin pm2 startup linux -u pi --hp /home/pi" pm2 start ~/MagicMirror/installers/pm2_MagicMirror.json