MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MMRIZE
    3. Posts
    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-CalendarExt3

      @Splashed
      Maybe one of reason was mentioned by @sdetweil,
      The other reason might be fetching finish synchronization issue. When you operate many calendars to fetch, some calendars might not end fetching before drawing CX3 due to hw performance, internet speed, server’s issue, etc.
      There would be 2 general solution.

      • wait for next refreshing cycle. The fetching of calendars may be completed until then.
      • Or you can use ‘waitFetch’ config value to delay the rendering view.
      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @crisvdn
      There is ‘waifFetch’ config value to wait enough time.

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalDAV

      Update 2.1.0

      • Birthday calendar enabled. (CardDAV implementation)
      • Some code refactoring.
      • calendars: [], is changed to targets: []. you have to reconfigure your config.js

      Now you can get Birthdays calendar from iCloud or Google Contacts. (Of course, other CardDAV supported contacts services.)

      posted in Productivity
      M
      MMRIZE
    • RE: MMM-CalendarExt3 formatting help

      @angeliKITTYx
      https://github.com/MMRIZE/MMM-CalendarExt3/discussions/124#discussioncomment-7950060
      See #6 answer.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 formatting help

      @angeliKITTYx
      Rename custom.css.example to custom.css then add my above codes into it.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalDAV

      @matt216
      More details about your environment are needed to know what happens.

      Let’s start with the concept.

      Some CALDAV Providers don’t serve any public iCAL(.ics) URL to be consumed externally. You don’t need this module if your CALDAV service can host iCAL URLs. I have no idea about baikal, but I think you know whether that service would provide iCAL or not.

      MMM-CALDAV can access the CALDAV server(which would not host any public iCAL URL) to get target calendar events. Then, this module converts the event data to a real iCAL file(.ics). And this module also hosts that file as a URL accessible from the default calendar module or some iCAL consuming modules with security. MMM-CALDAV will work like a private iCAL provider service.

      So, to show your event on MM, you may need both MMM-CALDAV and calendar module together.

      .env file is needed to connect/authenticate CALDAV server and some security features. Calendar events are very private so I want to block the security hole on working this module. You should put .env in MMM-CALDAV directory.

      So, where are you stuck now? Tell me what happens.

      posted in Productivity
      M
      MMRIZE
    • RE: MMM-CalendarExt3 formatting help

      @angeliKITTYx

      /* in your module config in config.js */
      ...
      useSymbol: false,
      ...
      
      /* custom.css */
      .CX3 .event.multiday:not(.continueToNextWeek) .headline .endTime {
        display: none;
      }
      
      .CX3 .event.singleday .headline:not(.useSymbol)::before,
      .CX3 .event.singleday .headline.useSymbol .symbol.noSymbol::before {
        display: none;
      }
      

      6dd4a77c-636c-46ce-9979-85595aac709b-image.png

      By the way, 1080w is too narrow for this kind of view… (with 0 margin, 1080px / 7 = 154px => only for 10~20 chars could be displayed in one cell.)

      posted in Troubleshooting
      M
      MMRIZE
    • RE: How can I increase the font size for some modules?

      @Kelemvor

      /* append belows into your css/custom.css */
      .CX3A {
        font-size: 20px; /* default was 16px */
      }
      
      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt2 tweaking

      @csongor-varga-0

      • https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/blob/main/docs/Configuration/View.md
        c63a80bf-90c8-47b5-bf66-3de7f5a9932a-image.png
        But I’m not sure this works in a daily view either. (some years passed…)

      • https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/blob/main/docs/Configuration/Views/daily.md
        de893e7a-c81e-4bb4-875e-1dc85ad02ff1-image.png
        But what you want is a week style view. Sorry, CX2 doesn’t support it.

      Anyway, I don’t support maintaining CX2 any more. I’ll leave it as it is.

      Instead, you can try CX3, for 7 days in a row.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-GooglePhotos stuck on "Loading..."

      @TipsyNurse
      What backend log says? Scanning doesn’t happen?

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Not getting news

      @WilliamF
      The free tier of NewsAPI provides only 1-day later news. When you want realtime news, you should pay.

      If you set config valuechoice: "headlines", you can use category, but;

      • Only available categories; business, entertainment, general, health, science, sports, technology.
      • It cannot be used mixed with sources.

      For the specified country or language, you can test it by yourself.
      You can open the browser and navigate this. (Replace API_KEY to yours. You can get your API_KEY on newspai.org site after login)

      • headlines;
      https://newsapi.org/v2/top-headlines?country=se&apiKey=API_KEY
      

      5d0630b3-b72a-48cb-bb1c-18568718cc79-image.png

      • everything;
      https://newsapi.org/v2/everything?language=en&q=apple&apiKey=API_KEY
      

      c66d9db4-b8ff-41b4-90c6-4b5a2d8aa183-image.png
      But the API doesn’t support se language.
      ba857ec9-b7fc-41b9-8bc7-fcb9c274052e-image.png

      For the usage of country, everything endpoint doesn’t support country options. Only the headlines endpoint supports it. But you should know this; country: "se" doesn’t mean “News from Swedish Press”, but rather similar to “Popular news in Sweden” or “news consumed commonly in/about Sweden”.

      posted in Utilities
      M
      MMRIZE
    • RE: Simple(?) module to send a notification every x minutes?

      @UncleRoger
      Can you share your forked version?

      posted in Requests
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @1a2a3a
      https://github.com/MMRIZE/MMM-CalendarExt3/blob/main/README.md

      56eaeb68-67db-4ce2-aef0-1060babd8e4b-image.png

      72c99b01-2b8c-40a9-9369-6ffc6701f9b6-image.png

      posted in Utilities
      M
      MMRIZE
    • RE: Simple(?) module to send a notification every x minutes?

      @UncleRoger
      The module also implements “resume” method to reset timer, so if the module get shown, it may be reset.
      But I’m not sure unless examining all three modules related.

      posted in Requests
      M
      MMRIZE
    • RE: Simple(?) module to send a notification every x minutes?

      @UncleRoger
      Unfortunately, BGSS is implementing suspend method to stop it’s timer. So when you page rotator hides BGSS, it’s timer doesn’t work.
      If you have some knowledge of JS, you can make monkey-patch with MMM-ModuleMonkeyPatch to suspend method not to stop its timer.

      posted in Requests
      M
      MMRIZE
    • RE: Alternate Day/Date Format

      @rrslssr

      dateFormat: "dddd<br/>MMM. DD<br/>YYYY",
      
      posted in Custom CSS
      M
      MMRIZE
    • RE: CalDAV

      @matt216
      Try MMM-CalDAV.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-Scenes2

      @ric
      Log says nothing suspicious. I suspect Chromium graphic memory leak issues due to last parts of error-log.
      In that case, I have nothing to help. Sorry.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-Scenes2

      @ric
      And, your log is just backend log, I need front-end log.
      You can see front-end log by;

      • installing MMM-LogExt
      • Or, dev-console of your MM screen, not terminal. (with npm run start:dev, you can see dev-console panel on your MM screen.)
      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-Scenes2

      @ric
      Maybe there would be some memory leaks on the chromium.
      Can you test it again with more simple animations?(Just fadeIn, fadeOut) Some version of Chromium is known for possible memory leaking on transitions.

      posted in Troubleshooting
      M
      MMRIZE
    • 1 / 1