@karsten13 Thank you for the update.
Read the statement by Michael Teeuw here.
Posts
-
RE: News Feed Source Title and Publish Date missing a character
-
RE: News Feed Source Title and Publish Date missing a character
@karsten13 Thanks for letting me know. If you could open the issue that would be great. (I’m in the middle of rebuilding my MM install from scratch, so my config/details for a bug post are not reliable at the moment.)
Am I right about the showPublishDate not being inline with showSourceTitle in past versions? (And therefore can’t target the two separately via CSS.)
-
News Feed Source Title and Publish Date missing a character
Recently updated MagicMirror and noticed the News Feed Title and Publish date are now running together – there is a space missing after the comma after the Title, so it looks like this:
New York Times,2 hours ago:when it should look like this (space after the comma):
New York Times, 2 hours ago:I haven’t noticed this in the older version I was running; Was showPublishDate used to be handled differently (via CSS and/or a div/span) instead of being inline with the showSourceTitle?
Can anyone help with getting the missing space back into this News Feed module output?
-
RE: Pi loses WiFi connection after a few hours
@sdetweil said in Pi loses WiFi connection after a few hours:
@jca2112 are you running pihole as an advert filter? seem to see this a lot with pihole servers…
Yes, I am running a pihole – thanks for suggesting that. (I should have mentioned it.) I’ve not had any issues with the magicmirror + pihole setup in the past, but just to make sure I whitelisted the magicmirror so it would bypass the pihole altogether. It didn’t seem to affect the problem, so I’m not sure that it is a factor.
-
RE: Pi loses WiFi connection after a few hours
This Github post seems to describe the same (or similar) issue:
-
RE: Pi loses WiFi connection after a few hours
I wanted to revive this topic, as I am having the same issue.
After a day or two, the Raspberry Pi 3 B+ seems to lose it’s connection. I’m not able to connect to it via SSH, and the Weather module stops updating temp/forecast/etc. The news headline module and calendar module seem to continue to update, however.
This problem goes away (temporarily) after a reboot.
Looking at the error logs, I only see this:
[ERROR] fatal: unable to access 'https://github.com/MichMich/MagicMirror.git/': Could not resolve host: github.comI’ve made sure the Pi is updated, and I’m able to ping sites (like github) after the reboot.
Any ideas? I haven’t had any problems until the past month or two.
-
RE: Calender updated to show 2021 holidays?
@sdetweil said in Calender updated to show 2021 holidays?:
@jca2112 https://www.calendarlabs.com/ical-calendar/holidays/
That link points to a list of holidays for different countries, with a link leading back to the same US holidays page with the previously used link:
https://www.calendarlabs.com/ical-calendar/holidays/us-holidays-76/
-
RE: Calender updated to show 2021 holidays?
@sdetweil said in Calender updated to show 2021 holidays?:
@jca2112 it will be a different link
Do you know what the new link will be and/or when it will be published? (The above link has been used for at least 2 years.)
Thanks.
-
Calender updated to show 2021 holidays?
When does the Calendar Labs (US) holidays link update to show 2021 holidays? Right now the calendar ends at Christmas 2020.
https://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics
-
RE: Add fade from another point instead vertical
Here is the CSS I use for a vertical gradient:
.calendar table:after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.48) 100%); }You could modify the above (using the deg angle) to create a horizontal gradient.
https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient