MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Call for testers, updated calendar module

    Scheduled Pinned Locked Moved Solved Troubleshooting
    6 Posts 2 Posters 354 Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S Offline
      sdetweil
      last edited by sdetweil

      like you I am tired of all the troubles we have with the calendar module,
      so lets end that here. we’ve got time between now and Jan 1 to find and fix any remaining issues.

      I have (I think) finally fixed it , this is built on top of the cal module in the current release 2.29.

      to get my fork into a DIFFERENT folder, not touching existing MM (I use newmm here as the new folder name, use whatever you like

      git clone https://github.com/sdetweil/MagicMirror newmm
      cd newmm
      git checkout fixcaldates2
      npm run install-mm
      cd config
      cp config.js.sample config.js
      cd ..
      

      edit the config.js and add your appropriate url in place of the default calendar we supply
      add whatever config settings are appropriate for your calendar, date/time formats, etc

      then
      npm start

      DST/STD change is coming this weekend for Europe, and next weekend for the US
      let me know what you see…
      you can open issue on my fork, add a ics for the events you find that you have trouble with

      if you want to run under this new MM… you can copy your whole config over and
      the modules folder too…

      you can use my backup/restore to do that too…(save time and energy)
      https://github.com/sdetweil/MagicMirror-backup-restore
      backup from MagicMirror (-s MagicMirror)
      restore to newmm (-s newmm) it will reinstall the modules

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      evroomE 1 Reply Last reply Reply Quote 0
      • S sdetweil referenced this topic on
      • S Offline
        sdetweil @evroom
        last edited by

        @evroom bug with

        showsEndOnlyWithDuration, new code suggestion posted in other topic

        i will open an issue and add this to the fix list (and two testcases)

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        evroomE 1 Reply Last reply Reply Quote 0
        • evroomE Offline
          evroom @sdetweil
          last edited by

          @sdetweil

          Repeating all day event with X occurrences shows end time of 23:59.

          urgency: 0,
          timeFormat: "absolute",
          dateFormat: "dddd MMM D - HH:mm",
          dateEndFormat: "HH:mm",
          fullDayEventDateFormat: "dddd MMM D",
          showEnd: true,
          showEndsOnlyWithDuration: true,
          getRelative: 0,
          

          Screenshot 2024-10-23 at 18.48.32.png

          BEGIN:VEVENT
          DTSTART;VALUE=DATE:20241104
          DTEND;VALUE=DATE:20241107
          DTSTAMP:20241023T164753Z
          UID:086ujg156a8n9t0dpg8h3g4ptu@google.com
          CREATED:20241023T164710Z
          LAST-MODIFIED:20241023T164710Z
          SEQUENCE:0
          STATUS:CONFIRMED
          SUMMARY:TestCal: ALLDAY_REPEAT_FROM_TO
          TRANSP:TRANSPARENT
          END:VEVENT
          BEGIN:VEVENT
          DTSTART;VALUE=DATE:20241111
          DTEND;VALUE=DATE:20241112
          RRULE:FREQ=DAILY;COUNT=3
          DTSTAMP:20241023T164753Z
          UID:0c9ah6plfonal1s1250k2mmgbt@google.com
          CREATED:20241023T164743Z
          LAST-MODIFIED:20241023T164743Z
          SEQUENCE:0
          STATUS:CONFIRMED
          SUMMARY:TestCal: ALLDAY_REPEAT_3_OCCURENCES
          TRANSP:TRANSPARENT
          END:VEVENT
          

          (cannot upload a text file anymore, only images)

          Changed:

          dateEndFormat: "dddd MMM D - HH:mm",
          

          Screenshot 2024-10-23 at 18.53.42.png

          Changed:

          showEnd: false,
          

          Screenshot 2024-10-23 at 18.55.34.png

          MagicMirror version: 2.30.0
          Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          Test environment:
          MagicMirror version: v2.30.0
          Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @evroom
            last edited by

            @evroom yes, you are working the end time issue on the other topic

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            evroomE 1 Reply Last reply Reply Quote 0
            • evroomE Offline
              evroom @sdetweil
              last edited by

              @sdetweil

              Just to follow up on the test I did where I got the end date displayed according to ‘dateEndFormat’ for a repeating allday event.
              Most of it is also covered in the other thread.

              It is working with your suggested change in calendar.js.
              No need to set ‘showEnd: false’.

              calendar.js.png

              urgency: 0,
              timeFormat: "absolute",
              dateFormat: "dddd MMM D - HH:mm",
              dateEndFormat: "dddd MMM D - HH:mm",
              fullDayEventDateFormat: "dddd MMM D",
              showEnd: true,
              showEndsOnlyWithDuration: true,
              getRelative: 0,
              

              ALLDAY_3_OCCURRENCES.png

              MagicMirror version: 2.30.0
              Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
              Raspbian GNU/Linux 12 (bookworm)

              Test environment:
              MagicMirror version: v2.30.0
              Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
              Raspbian GNU/Linux 12 (bookworm)

              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @evroom
                last edited by

                @evroom bug with

                showsEndOnlyWithDuration, new code suggestion posted in other topic

                i will open an issue and add this to the fix list (and two testcases)

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                evroomE 1 Reply Last reply Reply Quote 0
                • evroomE Offline
                  evroom @sdetweil
                  last edited by

                  @sdetweil

                  Will follow up in the “Cant use showEnd icloud cal” topic then.

                  MagicMirror version: 2.30.0
                  Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  Test environment:
                  MagicMirror version: v2.30.0
                  Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  1 Reply Last reply Reply Quote 0
                  • S sdetweil has marked this topic as solved on
                  • 1 / 1
                  • First post
                    Last post
                  Enjoying MagicMirror? Please consider a donation!
                  MagicMirror created by Michael Teeuw.
                  Forum managed by Sam, technical setup by Karsten.
                  This forum is using NodeBB as its core | Contributors
                  Contact | Privacy Policy