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

    carnifex82

    @carnifex82

    0
    Reputation
    310
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    carnifex82 Unfollow Follow

    Latest posts made by carnifex82

    • Calendar Module - I only want one Dateformat.

      Hi guys,

      I only want dates in the calendar module displayed as DD.MM. as the weekday names take up a lot of space.

      So I disabled all the relative time formats:

                                           colored: false,
                                              maximumNumberOfDays: 180,
                                              wrapEvents: true,
                                              dateFormat: "DD.MM.",
                                              timeFormat: "absolute",
                                              getRelative: 0,
                                              urgency: 0,
                                              calendars:
      
      

      Yet, I get this picture:

      0_1522507794494_mmmcal.JPG

      Looking at the source, it seems you can’t disable this.

      If I just remove this block from calendar.js, it works for me:

                   if (event.startDate - now < 2 * oneDay) {
                                                      // This event is within the next 48 hours (2 days)
                                                      if (event.startDate - now < this.config.getRelative * oneHour) {
                                                              // If event is within 6 hour, display 'in xxx' time format or moment.fromNow()
                                                              timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").fromNow());
                                                      } else {
                                                              // Otherwise just say 'Today/Tomorrow at such-n-such time'
                                                              timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").calendar());
                                                      }
      
      

      However, this is not update proof :( Any other ideas?

      posted in Troubleshooting
      C
      carnifex82
    • RE: Phone Notifications

      Same problem as Ogret2 here. I’m also quite not sure, how the pushbullet app is supposed to know about the other notifactions from my iPhone? But not even pushbullet notes arrive. Am I supposed to add the Mirror as an device? That’s what I did with my raspbery projects so far when using pushbullet to notify myself on the phone. But I only see the option for the general auth token.

      [edit]
      apparently it’s broken due to pushbullet :( maybe add a notice on github or so.

      posted in Utilities
      C
      carnifex82