• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

calendar - wrong repeating count when using sliceMultiDayEvents

Scheduled Pinned Locked Moved Solved Troubleshooting
17 Posts 2 Posters 844 Views 2 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 Away
    sdetweil @sdetweil
    last edited by Sep 16, 2024, 7:55 PM

    @MarcLandis interesting…

    change calendar.js 3 places
    give it a try

    change (line 633)

    const maxCount = Math.ceil((event.endDate - 1 - moment(event.startDate, "x").endOf("day").format("x")) / ONE_DAY) + 1;
    

    to

    const maxCount = Math.round((event.endDate - 1 - moment(event.startDate, "x").endOf("day").format("x")) / ONE_DAY) + 1;
    

    ceil takes 1.04 to 2, round to 1

    					let midnight
    						= moment(event.startDate, "x")
    							.clone()
    							.startOf("day")
    							.add(1, "day")
    							.endOf('day')  // add this (else its start of day, not end) line 641
    							.format("x");
    

    and recalc of midmnight (line split like above for clarity) line 654

    	midnight = moment(midnight, "x")
                                       .add(1, "day")
                                       .endOf('day')  // add this 
                                       .format("x"); // next day
    
    works in Europe/Berlin and America/Chicago 
    2 bugs
    1 count incorrect
    2 loop control

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    M 1 Reply Last reply Sep 16, 2024, 8:05 PM Reply Quote 0
    • M Offline
      MarcLandis @sdetweil
      last edited by MarcLandis Sep 16, 2024, 8:05 PM Sep 16, 2024, 8:05 PM

      @sdetweil this fixes it. The test calendar looks good and my real one with the birthdays (mostly affected one) is perfect. All other events are good too.

      Thx for your help.

      S 1 Reply Last reply Sep 16, 2024, 8:20 PM Reply Quote 0
      • S Away
        sdetweil @MarcLandis
        last edited by Sep 16, 2024, 8:20 PM

        @MarcLandis i’ll submit an issue and a pr…

        and a testcase

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        S 1 Reply Last reply Sep 16, 2024, 9:19 PM Reply Quote 1
        • S Away
          sdetweil @sdetweil
          last edited by Sep 16, 2024, 9:19 PM

          @MarcLandis
          submitted PR https://github.com/MagicMirrorOrg/MagicMirror/pull/3543/
          with new testcase to validate

          hopefully we will get it into next release Oct 1.

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          M 1 Reply Last reply Sep 17, 2024, 5:34 AM Reply Quote 0
          • M Offline
            MarcLandis @sdetweil
            last edited by Sep 17, 2024, 5:34 AM

            @sdetweil Thank you - even it doesn’t make it into the next release I have a way to manually fix it now.

            S 1 Reply Last reply Sep 17, 2024, 10:28 AM Reply Quote 0
            • M MarcLandis has marked this topic as solved on Sep 17, 2024, 6:34 AM
            • S Away
              sdetweil @MarcLandis
              last edited by Sep 17, 2024, 10:28 AM

              @MarcLandis the fix was accepted and merged

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              S 1 Reply Last reply Sep 17, 2024, 9:19 PM Reply Quote 1
              • S Away
                sdetweil @sdetweil
                last edited by Sep 17, 2024, 9:19 PM

                @MarcLandis you could test it now by
                https://forum.magicmirror.builders/topic/14327/testing-new-fixes-or-solving-current

                remember to do (to get release level dependencies)

                npm run install-mm
                

                assuming the config in this MM is set correctly for sliceMultiDayEvents

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                M 1 Reply Last reply Sep 20, 2024, 3:59 PM Reply Quote 0
                • M Offline
                  MarcLandis @sdetweil
                  last edited by MarcLandis Sep 20, 2024, 4:00 PM Sep 20, 2024, 3:59 PM

                  @sdetweil I was on a business trip the last days.

                  I noticed that multi fullday events will be shown one day in the past:

                  66765aea-2266-4ddd-9af1-a5d21fa8f36b-image.png

                  This is from today (20. Sep)

                  I don’t have the config to show past days enables.

                  S 1 Reply Last reply Sep 20, 2024, 6:54 PM Reply Quote 0
                  • S Away
                    sdetweil @MarcLandis
                    last edited by sdetweil Sep 21, 2024, 1:10 AM Sep 20, 2024, 6:54 PM

                    @MarcLandis hm, same calendar entries ?

                    is this on the edited calendar.js or the develop branch?

                    im on a trip til tuesday

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    M 1 Reply Last reply Sep 24, 2024, 8:14 AM Reply Quote 0
                    • M Offline
                      MarcLandis @sdetweil
                      last edited by Sep 24, 2024, 8:14 AM

                      @sdetweil I am going to debug this. The ics was slightly modified, when I noticed the bug.

                      M S 2 Replies Last reply Sep 24, 2024, 9:46 AM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        10/17
                        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