A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • 0 Votes
    22 Posts
    3k Views
    R
    @MMRIZE , thanks - I was aware of this. Regards, Ralf
  • Calendar number of events to display

    Solved
    4
    1
    0 Votes
    4 Posts
    599 Views
    S
    @cyclonej yes. that is one of the cool ways to use cal and Ext3 together v2.30 there is a bug in the broadcaster if you put in the fix listed in troubleshooting section, then it doesn’t affect what is sent
  • EXT-Detector for MMM-GoogleAssistant no longer working

    Solved
    4
    0 Votes
    4 Posts
    700 Views
    B
    I followed your instructions on the wiki and everything works beautifully again. Thanks for your great work on the GoogleAssistant module. It really makes the “magic” in MagicMirror.
  • MMM-CalendarExt3 month header and current date format

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    M
    @plainbroke @reverendz Instead of .date_xx, use .today to point today’s cell. And about the circle; https://forum.magicmirror.builders/topic/18324/mmm-calendarext3-show-color/11?_=1736098133616
  • Can't get MMM-Buttons module working with a physical button

    Unsolved
    4
    0 Votes
    4 Posts
    436 Views
    S
    @renardroux yes, that is the kind of work required
  • MMM-CalendarExt3 not showing events on calendar, but does on list after 2.30 update

    Solved
    37
    0 Votes
    37 Posts
    8k Views
    N
    @sdetweil THX a lot! This fix is working… it is fading out and it’s showing the events at CX3…
  • MMM-CalendarExt3 and EventTransformer not transformering....

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    S
    @justme2024 Documentation cannot cover every idea. (people don’t read them now anyhow, me included)
  • Calendar Module Error with Many Google Calendars

    Unsolved
    15
    0 Votes
    15 Posts
    2k Views
    S
    @moorevineyard new MagicMirror version released. be careful to not lose your changes til after you test
  • Default Calendar stuck on loading

    Solved
    55
    0 Votes
    55 Posts
    8k Views
    S
    @rushmuzik new release today
  • MMM-CalendarExt3 (or default calendar module?) repeating event shifts to wrong day

    Unsolved
    4
    1
    0 Votes
    4 Posts
    358 Views
    S
    @redfishbluefish yes byday seems to be one of tye psths tgst causes trouble. i believe all of those are resolved
  • MMM-CalendarExt3 - split/skip multiday events on specific days (weekends)

    Solved
    5
    0 Votes
    5 Posts
    433 Views
    R
    @MMRIZE thanks for the details! I spent some time working with this and ended up leaving it as the default behaviour.
  • Not loading one of two Google calendars

    Unsolved
    14
    0 Votes
    14 Posts
    1k Views
    bdeelmanB
    Hi, The second Google calendar was too big. I made a module to prepare a smaller ics file with only the future events. And now it is working. Two Google calendars. KR, Bert
  • Outdated?

    Unsolved
    2
    0 Votes
    2 Posts
    211 Views
    S
    @magicmonkey yes, we dont support node 23 yet. coming jan 1 or use the develop branch git clone magicmirror url --- you already did this git checkout develop npm run install-mm we support 20.9.0 or above, not any 21, but any 22 so you could do this to get 22 sudo npm install n -g sudo n 22 node -v should be 22 then npm run install-mm
  • MMM-MPlayer

    Solved
    7
    0 Votes
    7 Posts
    508 Views
    S
    @evroom said in MMM-MPlayer: When in January the new MM version comes out, I am finally going to reinstall my old setup. if you used develop branch today, on jan 1, you could use my upgrade script and it will switch you back to master and do the update… no need to wait if you have time now… new release also needs a new version of node… SO much fun…
  • MMM-Wallpaper not showing anything

    Unsolved
    11
    0 Votes
    11 Posts
    1k Views
    S
    @QuackingPlums I added your MMM-Wallpaper config to my system and it works 1st time… not using flight or anylist but all the rest
  • Change Header of Default Weather modules

    Unsolved
    2
    0 Votes
    2 Posts
    146 Views
    S
    @ooom416354 do module: weather, header:…whatever, quotes of course weather has a parm appendLocationToHeader needs to be set to false
  • Visibility of variables in MMM-HomeAssistantDisplay

    Unsolved
    8
    0 Votes
    8 Posts
    640 Views
    S
    @DrKaMo did you resolve this?
  • MMM-WeatherOrNot - Noob needs help

    Unsolved
    9
    0 Votes
    9 Posts
    666 Views
    S
    @Assassins as @KristjanESPERANTO documented, the module does NOT use the darksky api… so the info I worked from was incorrect
  • MagicMirror Install Script Message

    Solved
    3
    0 Votes
    3 Posts
    292 Views
    plainbrokeP
    @sdetweil Thanks for the update.
  • MMM-CalendarExt3 add non-event content to weekday cell

    Solved
    10
    0 Votes
    10 Posts
    637 Views
    R
    @MMRIZE Thanks! Intl.dateTimeFormat worked once I realized what I was trying to compare against was wrong. Probably not actually portable for anyone else but works for me: let isHoliday = holidays.some(holiday => { return holiday === new Intl.DateTimeFormat('en-CA').format(current) }) Overall this isn’t the most efficient code I’ve written. Looping and counting days since a start date for every date cell is expensive. Tim to learn more javascript I guess.