Maybe I am confused. I thought this was a discourse forum. I was suggesting using the same plugin to make a gallery from the “show me your mirror” section. It would be nice to be able to browse that section with a chosen image from each post with the title of the post.
Read the statement by Michael Teeuw here.
Posts
-
RE: Gallery for builds
-
RE: Chrometastic-Mirror
This is really a good idea. Is there a way to make it cast at startup without any mouse clicks?
-
Gallery for builds
I hang out in the V1Engineering forums and they wanted a way to have a gallery. They found a plugin to show thumbnails on tags, and all the top users have to do is add a specific tag and pick a thumbnail to make a gallery from a tag like this:
https://forum.v1engineering.com/tag/gallery-lowrider-cnc
More details here:
https://forum.v1engineering.com/t/new-galleries/20870?u=jeffeb3
-
RE: default-calendar recurring events aren't being adjusted for the timezone.
The docker container isn’t updated yet (not a surprise) but I did just pull 2.13.0 and ran npm install, then restarted the container and it is displaying those in the right timezone now.
Thank you for the help. Great forums here. That’s only possible with great contributors.
-
RE: default-calendar recurring events aren't being adjusted for the timezone.
root@721ce56f7bbf:/opt/magic_mirror# git log -n 1 commit 018cb9152689b1f1f262e6f3bfbf71cc99a9e59c (grafted, HEAD, tag: v2.12.0) Author: Michael Teeuw <michael@xonaymedia.nl> Date: Wed Jul 1 20:04:36 2020 +0200 Merge pull request #2064 from MichMich/develop Release 2.12.0
This is the git log from inside the container, in /opt/magic_mirror, which I assume means I have 2.12.0.
-
RE: default-calendar recurring events aren't being adjusted for the timezone.
It is a docker image from a few days ago. I built so many in the last 3 days I can’t remember if I picked :stable or :latest. I can try to pull the latest docker image.
bastilimbach/docker-magicmirror "./docker-entrypoi..." 22 hours ago
I’m not in a rush. If this stuff is just flowing through, I can wait a day or two, pull, and report back.
-
default-calendar recurring events aren't being adjusted for the timezone.
I bet this is a quick one, since it looks like there are some calendar fixes that @sdetweil pointed some people to. I couldn’t find them.
I am just getting started and I have a google calendar, and I’ve added some events. Then I switched some of the events to recurring, and they are categorized at the wrong time/days.
The clock display is correct (so I think I have the timezone right). The single events are showing up in the right places. But the recurring events are off by 6 hours (I live in Denver, -6).
I took a peek at the ical from google calendar. This event is displayed at the right time:
It should be displayed at 2:01pm, and it is.
BEGIN:VEVENT DTSTART:20201001T200100Z DTEND:20201001T203100Z DTSTAMP:20201001T184424Z UID:something@google.com CREATED:20201001T184028Z DESCRIPTION: LAST-MODIFIED:20201001T184419Z LOCATION: SEQUENCE:1 STATUS:CONFIRMED SUMMARY:maths TRANSP:OPAQUE END:VEVENT
This one is wrong. It should be at 2:00pm, and it’s showing up at 8am.
BEGIN:VEVENT DTSTART;TZID=America/Denver:20201001T140000 DTEND;TZID=America/Denver:20201001T150000 RRULE:FREQ=WEEKLY;BYDAY=FR,MO,TH,TU,WE DTSTAMP:20201001T184424Z UID:something@google.com CREATED:20201001T143135Z DESCRIPTION: LAST-MODIFIED:20201001T163125Z LOCATION: SEQUENCE:2 STATUS:CONFIRMED SUMMARY:Math Class TRANSP:OPAQUE END:VEVENT
I’m assuming the trouble is that this isn’t being read correctly:
DTSTART;TZID=America/Denver:20201001T140000 DTEND;TZID=America/Denver:20201001T150000
But this is:
DTSTART:20201001T200100Z DTEND:20201001T203100Z