Group Details Private

administrators

  • RE: Git Hub requiring username and password

    @sdetweil

    old one works too (but should not be used anymore)

    posted in Troubleshooting
  • RE: Git Hub requiring username and password

    @ewandenton

    tested it, no auth needed:

    ❯ git clone https://github.com/MagicMirrorOrg/MagicMirror.git
    Cloning into 'MagicMirror'...
    remote: Enumerating objects: 26723, done.
    remote: Counting objects: 100% (112/112), done.
    remote: Compressing objects: 100% (71/71), done.
    remote: Total 26723 (delta 53), reused 82 (delta 35), pack-reused 26611
    Receiving objects: 100% (26723/26723), 22.56 MiB | 12.26 MiB/s, done.
    Resolving deltas: 100% (16643/16643), done.
    
    posted in Troubleshooting
  • v2.27.0

    https://github.com/MagicMirrorOrg/MagicMirror/releases/tag/v2.27.0

    [2.27.0] - 2024-04-01

    Thanks to: @bugsounet, @crazyscot, @illimarkangur, @jkriegshauser, @khassel, @KristjanESPERANTO, @Paranoid93, @rejas, @sdetweil and @vppencilsharpener.

    This release marks the first release without Michael Teeuw (@michmich). A very special thanks to him for creating MagicMirror and leading the project for so many years.

    For more info, please read the following post: A New Chapter for MagicMirror: The Community Takes the Lead.

    Added

    • Output of system information to the console for troubleshooting (#3328 and #3337), ignore errors under aarch64 (#3349)
    • [chore] Add eslint-plugin-package-json to lint the package.json files (#3368)
    • [weather] showHumidity config is now a string describing where to show this element. Supported values: “wind”, “temp”, “feelslike”, “below”, “none”. (#3330)
    • electron-rebuild test suite for electron and 3rd party modules compatibility (#3392)
    • Create MM² icon and attach it to electron process (#3407)

    Updated

    • Update updatenotification (update_helper.js): Recode with pm2 library (#3332)
    • Removing lodash dependency by replacing merge by spread operator (#3339)
    • Use node prefix for build-in modules (#3340)
    • Rework logging colors (#3350)
    • Update pm2 to v5.3.1 with no allow-ghsas (#3364)
    • [chore] Update husky and let lint-staged fix ESLint issues
    • [chore] Update dependencies including electron to v29 (#3357) and node-ical
    • Update translations for estonian (#3371)
    • Update electron to v29 and update other dependencies
    • [calendar] fullDay events over several days now show the left days from the first day on and ‘today’ on the last day
    • Update layout of current weather indoor values

    Fixed

    • Correct apibase of weathergov weatherprovider to match documentation (#2926)
    • Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
      initial and recurring events to not show, and some event times to be off an hour. (#3291)
    • Skip changelog requirement when running tests for dependency updates (#3320)
    • Display precipitation probability when it is 0% instead of blank/empty (#3345)
    • [newsfeed] Suppress unsightly animation cases when there are 0 or 1 active news items (#3336)
    • [newsfeed] Always compute the feed item URL using the same helper function (#3336)
    • Ignore all custom css files (#3359)
    • [newsfeed] Fix newsfeed stall issue introduced by #3336 (#3361)
    • Changed log.debug to log.log in app.js where logLevel is not set because config is not loaded at this time (#3353)
    • [calendar] deny fetch interval < 60000 and set 60000 in this case (prevent fetch loop failed) (#3382)
    • added message in case where config.js is missing the module.export line PR #3383
    • Fixed an issue where recurring events could extend past their recurrence end date (#3393)
    • Don’t display any npm WARN <....> on install (#3399)
    • Fixed move suncalc dependency to production from dev, as it is used by clock module
    • [compliments] Fix mirror not responding anymore when no compliments are to be shown (#3385)
    • [chore] Fixed mastermerge workflow (#3415)

    Deleted

    • Unneeded file headers (#3358)
    • Removed codecov.yaml
    posted in MagicMirror
  • RE: Module for MagicMirror forum

    the use of a csrf token is restricted to admins (as already mentioned by @bugsounet), there is a hack described here to open this for all users but I don’t think we should do this.

    For accessing the read(-only) api you can use a cookie from your browser, e.g.

    curl --cookie "express.sid=xxxxxxx" https://forum.magicmirror.builders/api/unread
    

    but this would be challenging to use in a module for mm …

    posted in Requests
  • RE: Module for MagicMirror forum

    some api urls seem to work without authentication, e.g.

    ❯ curl -s https://forum.magicmirror.builders/api/recent/posts/day | jq -r '.[].topic.title'
    Default Weather Module Icon Position
    Module for MagicMirror forum
    MMM-Formula1 updates
    MMM-Formula1 updates
    MMM-Formula1 updates
    Live phone location
    Refresh Magic Mirror after custom css changes
    Module for MagicMirror forum
    Refresh Magic Mirror after custom css changes
    MMM-QuotesFromReddit
    Refresh Magic Mirror after custom css changes
    
    posted in Requests
  • RE: MMM-CalendarExt3

    @flemmingss said in MMM-CalendarExt3:

    The “CX3_Shared” folder is empty

    this is the problem which is caused by the strange installation procedure in the used docker image.

    The module installation is done via

    npm init -y
    npm install request --save
    

    You have to ask the author of this script why he is doing this.

    With this construction the postinstall/postupgrade scripts defined in the package,json of MMM-CalendarExt3 are never called so the CX3_Shared folder is empty.

    posted in Utilities
  • RE: delete account

    @sdetweil

    I was able to delete the account.

    posted in Forum
  • v2.26.0

    [2.26.0] - 01-01-2024

    https://github.com/MichMich/MagicMirror/releases/tag/v2.26.0

    Thanks to: @bnitkin, @bugsounet, @dependabot, @jkriegshauser, @kaennchenstruggle, @KristjanESPERANTO and @Ybbet.

    Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you guys! You are awesome!

    This release also marks the latest release by Michael Teeuw. For more info, please read the following post: A New Chapter for MagicMirror: The Community Takes the Lead.

    Added

    • Added update notification updater (for 3rd party modules)
    • Added node 21 to the test matrix
    • Added transform object to calendar:customEvents
    • Added ESLint rules for jest (including jest/expect-expect and jest/no-done-callback)

    Removed

    • Removed Codecov workflow (not working anymore, other workflow required) (#3107)
    • Removed titleReplace from calendar, replaced + extended by customEvents (backward compatibility included) (#3249)
    • Removed failing unit test (#3254)
    • Removed some unused variables

    Updated

    • Update electron to v27 and update other dependencies as well as github actions
    • Update newsfeed: Use html-to-text instead of regex for transform description
    • Review ESLint config (#3269)
    • Updated dependencies
    • Clock module: optionally display current moon phase in addition to rise/set times
    • electron is now per default started without gpu, if needed it must be enabled with new env var ELECTRON_ENABLE_GPU=1 on startup (#3226)
    • Replace prettier by stylistic in ESLint config to lint JavaScript (and disable some rules for config/config.js* files)
    • Update node-ical to v0.17.1 and fix tests

    Fixed

    • Avoid fade out/in on updateDom when many calendars are used
    • Fix the option eventClass on customEvents.
    • Fix yr API version in locationforecast and sunrise call (#3227)
    • Fix cloneObject() function to respect RegExp (#3237)
    • Fix newsfeed module for feeds using “a10:updated” tag (#3238)
    • Fix issue template (#3167)
    • Fix #3256 filter out bad results from rrule.between
    • Fix calendar events sometimes not respecting deleted events (#3250)
    • Fix electron loadurl locally on Windows when address “0.0.0.0” (#2550)
    • Fix updatanotification (update_helper.js): catch error if reponse is not an JSON format (check PM2)
    • Fix missing typeof in calendar module
    • Fix style issues after prettier update
    • Fix calendar test (#3291) by moving “Exdate check” from e2e to electron to run on a Thursday
    • Fix calendar config params fetchInterval and excludedEvents were never used from single calendar config (#3297)
    • Fix MM_PORT variable not used in electron and allow full path for MM_CONFIG_FILE variable (#3302)
    posted in MagicMirror
  • A New Chapter for MagicMirror: The Community Takes the Lead

    Dear MagicMirror Community,

    As we step into 2024, MagicMirror marks a significant milestone - a decade of innovation, collaboration, and growth. Ten years ago, I embarked on an incredible journey with the inception of the MagicMirror project on GitHub. It has been an honor and a privilege to witness this project evolve, driven by the passion and dedication of a vibrant and creative community.

    However, life is an ever-changing tapestry, and with new priorities and paths unfolding for me, the time has come to make a pivotal decision. Recognizing that my ability to invest the energy and attention MagicMirror deserves is diminishing, I have decided that it is in the best interest of the project to transition its stewardship to those who can carry its legacy forward with renewed vigor and vision.

    Today, I am announcing the transfer of the MagicMirror repository to a new GitHub organization. This move is not an end, but rather a new beginning - a step towards transforming MagicMirror into a fully community-led project. It is my firm belief that this transition will open new avenues for innovation and growth, ensuring that MagicMirror continues to thrive and adapt in the ever-evolving tech landscape.

    I want to extend my heartfelt gratitude to everyone who has contributed to MagicMirror over the past decade. Your contributions, big and small, have been the lifeblood of this project, and I am deeply thankful for your support and enthusiasm.

    As we move forward, I want to assure you that this transition will be smooth and thoughtful. The repository’s shift to a new organization is just the first step in this transformation. In the future, we may also transition other components of the project, such as the website, forum, and servers, to ensure that MagicMirror continues to be supported and nurtured by its community.

    I am excited to see where you, the community, will take MagicMirror next. Here’s to a future filled with innovation, collaboration, and success.

    Thank you for being a part of this incredible journey.

    Warm regards,

    Michael Teeuw

    posted in MagicMirror
  • v2.25.0

    [2.25.0] - 2023-10-01

    https://github.com/MichMich/MagicMirror/releases/tag/v2.25.0

    Thanks to: @bugsounet, @dgoth, @dependabot, @kenzal, @Knapoc, @KristjanESPERANTO, @martingron, @NolanKingdon, @Paranoid93, @TeddyStarinvest and @Ybbet.

    Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you guys! You are awesome!

    ⚠️ This release needs nodejs version >= v18, older releases have reached end of life and will not work!

    Added

    • Added UV Index support to OpenWeatherMap
    • Added ‘hideDuplicates’ flag to the calendar module
    • Added allowOverrideNotification to weather module to enable sending current weather objects with the CURRENT_WEATHER_OVERRIDE notification to supplement/replace the current weather displayed
    • Added optional AnimateCSS animate for hide(), show(), updateDom()
    • Added AnimateIn and animateOut in module config definition
    • Apply AnimateIn rules on the first start
    • Added automatic client page reload when server was restarted by setting reloadAfterServerRestart: true in config.js, per default false (#3105)
    • Added eventClass option for customEvents on the default calendar
    • Added AnimateCSS integration in tests suite (#3206)
    • Added npm dependabot [Reserved to developer] (#3210)
    • Added improved logging for calendar (#3110)

    Removed

    • Breaking Change: Removed digest authentication method from calendar module (which was already broken since release 2.15.0)

    Updated

    • Update roboto fonts to version v5
    • Update issue template
    • Update dev/dependencies incl. electron to v26
    • Replace pretty-quick by lint-staged (https://github.com/azz/pretty-quick/issues/164)
    • Update engine node >=18. v16 reached it’s end of life. (#3170)
    • Update typescript definition for modules
    • Cleaned up nunjuck templates
    • Replace node-fetch with internal fetch (#2649) and remove digest-fetch
    • Update the French translation according to the English file.
    • Update dependabot incl. vendor/fonts (monthly check)
    • Renew package-lock.json for release

    Fixed

    • Fix engine check on npm install (#3135)
    • Fix undefined formatTime method in clock module (#3143)
    • Fix clientonly startup fails after async added (#3151)
    • Fix electron width/heigth when using xrandr under bullseye
    • Fix time issue with certain recurring events in calendar module
    • Fix ipWhiteList test (#3179)
    • Fix newsfeed: Convert HTML entities, codes and tag in description (#3191)
    • Respect width/height (no fullscreen) if set in electronOptions (together with fullscreen: false) in config.js (#3174)
    • Fix: AnimateCSS merge hide() and show() animated css class when we do multiple call
    • Fix Uncaught SyntaxError: Identifier 'getCorsUrl' has already been declared (at utils.js:1:1) when using clock and weather module (#3204)
    • Fix overriding config.js when running tests (#3201)
    • Fix issue in weathergov provider with probability of precipitation not showing up on hourly or daily forecast
    posted in MagicMirror