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

    Posts

    Recent Best Controversial
    • RE: Calendar overlapping problem

      @StrikeBack83 you didn’t put the config options in the right place, try:

      {
        module: "calendar",
        header: "Österreichische Feiertage",
        position: "top_left",
        config: {
          timeFormat: "absolute",
          maxTitleLength: 17,
          maximumNumberOfDays: 7,
          dateFormat: "DD MMM",
          fullDayEventDateFormat: "DD MMM",
          urgency: 0,
          getRelative: 0,
          calendars: [
            {
              //symbol: "calendar-check-o ",
              url: "https://www.ferienwiki.at/exports/feiertage/2017/at/wien"
            }
          ]
        }
      },
      

      Furthermore you can get mor space out of your monitor, by applying the following css rule in custom.css

      body {
        margin: 10px;
        height: calc(100% - 20px);
        width: calc(100% - 20px);
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Now also supporting fuel prices in the USA. Take a look at https://github.com/cowboysdude/MMM-Gas for different style of the same information.

      2.3.0

      MagicMirror² version >= 2.15.0 required.

      Added

      • Provider: autoblog
      • Config option: showBrand
      • Integrated MagicMirror logger on server side
      • Dependency: node-html-parser
      • Config option excludeStationIds to exclude gas stations from radius (Tankerkönig only)

      Changed

      • Updated Github config files
      • Updated dependencies

      Removed

      • Dependency: fs-extra
      • Dependency: geolib

      Link to module https://github.com/fewieden/MMM-Fuel

      autoblog.png

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @darkeagl105 can you please test the newest version if it fixes you problem?

      Changelog:
      exchanged flexbox with table to support smaller screens
      added i18n for english and german
      replaced icons with font-awesome

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MagicMirror in Slack ... we'll see you there.

      @roramirez is there a specific reason why this will be devs only? I think discussions about new features etc. is also possible in public async communication, especially in an open source project. In compare bugs and help is more like an urgent thingy and most of the time synchronous communication is needed, like the idea of having a shoutbox plugin on the forum. Slack also provides private channels, so why don’t open the slack for everyone with some private channels where only certain people get access to. Also where is the border to let people in or not. In my oppinion there are severable people who did patches or own modules in the past, but it was more than a copy paste from someone else, than real coding. Not to offend any body, but makes no sense to have people in discussions who have a leak on knowledge what they just actually did, if we will have just selected people in there.

      posted in MagicMirror
      strawberry 3.141S
      strawberry 3.141
    • RE: Calendar shows no events

      @lum3n Can you try to use a public online ics file and see if it get parsed correctly? If so download it and make it available through your local server, then try to parse it locally. After that you should know if it is your ics file or there is some issue with your environment somewhere.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @ooom416354 if you can provide me a free api i will create those modules or you explain me in detail what you want to have displayed per personal message and i do screen scraping

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: DailyXKCD

      for inverting the colours you can insert the css rule filter: invert(100%);

      posted in Entertainment
      strawberry 3.141S
      strawberry 3.141
    • RE: Old Modules from MM1 transfer to MM2

      there is already a button module for mm2
      https://forum.magicmirror.builders/topic/95/button

      for voice control there are several people in this forum working on
      https://forum.magicmirror.builders/topic/402/to-do-modules
      https://forum.magicmirror.builders/topic/54/voice-motion-control/
      https://forum.magicmirror.builders/topic/222/voice-control

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: assign a symbol to a module

      @Plati do you know how regular expression works?makes no sense to remove the asterisks symbol, you need the asterisk because it is in the string otherwise you dont detect the value!

      problem is that the asterisk has a special function in the regular expression context so you need to escape it like this var temperatureRegExp = /Temperature = (.*?) \*C/ig;

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Github Tutorial

      @mortenbirkelund

      1. fork the repository on github by clicking on the fork button on the repository page
      2. clone your new created repository
      3. switch to develop branch git checkout develop
      4. make your changes
      5. stage your changed files git add file_a file_b ...
      6. commit your changes git commit -m "This is what I have changed"
      7. push your local changes to github git push
      8. create a pull request on your repository page to merge your changes to the main project
      posted in Feature Requests
      strawberry 3.141S
      strawberry 3.141
    • 1 / 1