MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MMRIZE
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 9
    • Topics 29
    • Posts 952
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda

      @sdetweil
      You are right.
      However the example seems somehow ambiguous (though config description) It might mislead someone.(like @UncleRoger or me) :D

      f0805199-72ae-4077-ac02-7227a032afc2-image.png

      posted in Utilities
      M
      MMRIZE
    • RE: Calendar, MMM-CalendarExt3, and MMM-Carousel

      @jubbles
      To show 3 sequenced month-instances of the CX3 modules;

      {
      	module: "calendar",
      	header: "US Holidays",
      	position: "top_left",
      	config: {
      		maximumEntries: 100,
      		maximumNumberOfDays: 365,
      		calendars: [
      			{
      				symbol: "calendar-check",
      				url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
      			}
      		]
      	}
      },		
      {
      	module: "MMM-CalendarExt3",
      	position: "bottom_bar",
      	config: {
      		instanceId: "THISMONTH",
      		mode: "month",
      	}
      },
      {
      	module: "MMM-CalendarExt3",
      	position: "bottom_bar",
      	config: {
      		instanceId: "NEXTMONTH",
      		mode: "month",
      		monthIndex: 1,
      	}
      },
      {
      	module: "MMM-CalendarExt3",
      	position: "bottom_bar",
      	config: {
      		instanceId: "NEXTNEXTMONTH",
      		mode: "month",
      		monthIndex: 2,
      	}
      },
      

      I don’t use MMM-Carousel, so get a help from others.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Electron screen becomes blank after a period of time

      @DDE12

      Check whether some modules make unhandled exception error when it create DOM.

      [CX3] Module is not prepared yet, wait a while.
      getDom @ MMM-CalendarExt3Agenda.js:193
      
      [CX3] Module is not prepared yet, wait a while.
      getDom @ MMM-CalendarExt3.js:228
      

      This message might imply some other module fails to create DOM at its start. (I’ll fix the CX3* modules not so strict to other module’s failure soon.)

      By the way, It would be better;

      • Remove all modules from config
      • Then add one by one unless you meet the problem.
      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      [UPDATE] 1.7.1

      • ADDED useMarquee config
      • ADDED noMarquee event Object attribute
        From now, too long title will be rolling as marquee or ticker style.
        marquee
      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda - how to hide days with no events and hide/filter out events with a keywords

      @GrandizerGo

      To filter out the empty days

      There could be 2 ways of approaches for your exact purpose. The each ways are different, so choose one.

      1.

      d9ebe486-8de8-4e4b-83dc-c859f050912e-image.png

      /* CX3A config section of config/config.js */
      onlyEventDays: 5, // This will show 5 specific days which has at least one event on the day.
      

      cd16bca8-6022-4d5c-897d-ecb0a053f762-image.png

      2.

      Or you can hide empty days in the calendar scope with CSS.

      /* css/custom.css */
      .CX3A .agenda .cell[data-events-counts="0"] {
        display: none;
      }
      

      9f8a0c9b-1c15-488d-8293-a958775b6148-image.png

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 not syncing automatically with icloud

      @greedyvegan That is not an error, just warning you can ignore it.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-OpenAI

      1.1.0 (2023-03-02)

      Added : Chat API

      Chat

      posted in Productivity
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @CDT
      I’ve fixed it. Thanks for reporting it.

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda no longer works after a certain time.

      @Old_Death
      I found out what was wrong. I made some mistakes in my previous updates, and there is still a missing one. I’ll fix it and update it soon.

      posted in Troubleshooting
      M
      MMRIZE
    • MMM-CalendarExt3Journal

      MMM-CalendarExt3Journal

      Magic mirror module for presenting events as daily/weekly journal style.

      Screenshot

      screenshot1

      screenshot2

      5dcea6c5-d3fa-471e-a08c-bf4cb8132713-image.png

      Features

      Main Features

      • More detailed view of events by day/week with specific time ranges.
      • locale-aware calendar
      • customizing events: filtering, sorting, transforming
      • multi-instance available. You don’t need to copy and rename the module. Just add one more configuration in your config.js.

      https://github.com/MMRIZE/MMM-CalendarExt3Journal

      posted in Productivity
      M
      MMRIZE
    • 1 / 1