@Serimner tell us more, when did you install, how did you install, what modules did u add.
open the developers window, ctrl-shift-i,. select the tab labeled ‘console’ and scroll up to see any errors,
usually red text…
Read the statement by Michael Teeuw here.
Posts
-
RE: PIR-sensor and 7 inch touch LCD display for Raspberry-Pi
-
RE: Default calendar
@aquaman worked for me in both directions, no parm specified…
odroid@odroid:~/MagicMirror/modules/default/calendar$ unix2dos birthdays.ics unix2dos: converting file birthdays.ics to DOS format...and
odroid@odroid:~/MagicMirror/modules/default/calendar$ dos2unix birthdays.ics dos2unix: converting file birthdays.ics to Unix format...i then used Notepad++ to search for \r\n (windows) or \n (unix) linebreaks
found as expected -
RE: Read text file for settings
@Subintro yeh… i just edit it and comment out, or uncomment sections…
for modules, add disable: true/false, to the module defintion to turn it off/on
-
RE: Default calendar
@aquaman you shouldn’t need to specify any options…
just
unix2dos filenameit will convert in place
or -ascii convert only line breaks (default)
unix2dos -ascii filename -
RE: new update/upgrade script, ready for testing
@bobwilliams got them thanks… you didn’t happen to save that ‘failing’ MagicMirror folder did you?
-
RE: new update/upgrade script, ready for testing
@bobwilliams Ok. I put a fix in for Save=yes. Save=No should replace them w local repo version…and then upgrade.
Will have to build test. Really want to see the upgrade log, and pm2 logs for why it stoppexy
-
RE: new update/upgrade script, ready for testing
@bobwilliams What files? My script should handle it. So I want to understand.
-
RE: Default calendar
@aquaman after debugging, the problem is the file created by fb2ics has linux line ends (\n), but the code is looking for windows line ends (\r\n)
once I edited and saved with windows line ends it works
you could use unix2dos on it to convert the line ends
I have opened an issue and submitted a pull request to the ical parser github project for this
https://github.com/peterbraden/ical.js/issues/105