Read the statement by Michael Teeuw here.
MMM-CalendarExt3
-
@MMRIZE ok, no workaround…
-
Well that is indeed unfortunate. Thanks for the info, I appreciate it. I guess I’ll try to hardcode the translation values into
CalendarExt3.js
for now. -
@MMRIZE
Thanks for the help. I actually just had to specify singleday and fullday along with the calendar name, which I’m ashamed I didn’t think of before. -
@MMRIZE Sorry if this has already been reported: I just installed MMM-CalendarExt3 and it appears to be listing my calendar events (Google Calendar .ics) in reverse order (events on each day are listed from latest to earliest). Not sure what additional information is helpful, but I’m using month view, locale is
en-US
, usingtimeFormat: 12
, and this is all that’s in my module config:{ module: "MMM-CalendarExt3", position: "bottom_center", title: "", config: { mode: "month", instanceId: "basicCalendar", locale: 'en-US', maxEventLines: 5, firstDayOfWeek: 1, calendarSet: ['work', 'home', 'us-holidays', "leisure"], } },
Any idea what might be happening? Thank you!
-
-
@MMRIZE I found the discrepancy! It show up in the correct order on Chromium based browsers, however is in the reverse order when viewed on Firefox.
@sfb said in MMM-CalendarExt3:
@MMRIZE Sorry if this has already been reported: I just installed MMM-CalendarExt3 and it appears to be listing my calendar events (Google Calendar .ics) in reverse order (events on each day are listed from latest to earliest). Not sure what additional information is helpful, but I’m using month view, locale is
en-US
, usingtimeFormat: 12
, and this is all that’s in my module config:{ module: "MMM-CalendarExt3", position: "bottom_center", title: "", config: { mode: "month", instanceId: "basicCalendar", locale: 'en-US', maxEventLines: 5, firstDayOfWeek: 1, calendarSet: ['work', 'home', 'us-holidays', "leisure"], } },
Any idea what might be happening? Thank you!
-
@sfb
interesting symptom.
I suspect some CSS property compatibility issues.(maybe-webkit
and-moz
diffrence) I’ll look inside at what happens in Firefox. Anyway, MM is supposed to work on Electron in standalone mode, So I regard Chromium as a de facto standard environment of MM. -
@MMRIZE Thanks for looking into it! Totally understandable. I’ve been testing MM serving from a docker container and viewed in various environments, so it’s not a typical setup.
-
I am very new to this so I apologize if this is a dumb question. I love the layout here, but I am having an issue getting the weekly calendar to populate. I have the default calendar and its working, but what I am trying to do is to have my google account show up in the weekly.
Thanks, and again I am sorry if this is simple. Any help would be appreciated. -
mode: 'week',
in the config section of the module would be that.
Could you upload your config here to let me see what you were trying? -
@MMRIZE
{
module: “calendar”,
position: “top_center”,
config: {
broadcastPastEvents: true, // <= IMPORTANT to see past events
calendars: [
{
url: “https://calendar.google.com/calendar/”,
name: “Calendar”, // <= RECOMMENDED to assign name
color: “red” // <= RECOMMENDED to assign color
},] } }, { module: "MMM-CalendarExt3", position: "bottom_center", title: "", config: { mode: "month", instanceId: "basicCalendar", locale: 'en-US', maxEventLines: 5, firstDayOfWeek: 1, calendars: ['https://calendar.google.com/'] - } }, {
I have my calendar string in there from google I just deleted the identifier.
As you can see the calendar event test is showing top center, but is not on the calendar.
I like the current view just would like the calendar to populate.Also in my config file everything is lined up just didn’t transfer well.
Thanks again for your patience