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

    Posts

    Recent Best Controversial
    • 3rd-Party-Modules project now part of MagicMirrorOrg

      We’re happy to announce that KristjanESPERANTO’s 3rd-party modules repository has found a new home at MagicMirrorOrg.

      Thank you, Kristjan, for donating your repository to the public and for all the work you’ve put into it.

      We have (hopefully) updated all links:

      • Github repository: https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules
      • 3rd-party-modules website: https://modules.magicmirror.builders/
      • 3rd-party-modules json file: https://modules.magicmirror.builders/data/modules.json

      In the medium term, we plan to replace the currently used wiki with a different onboarding process for 3rd-party modules.

      posted in Websites
      karsten13K
      karsten13
    • MMM-RepoStats

      Hi,

      this is my first MM module and may others find it useful :)

      Download and infos: MMM-RepoStats

      It’s about repository statistics for Docker, GitHub or GitLab repositories:

      example_3_types.jpg

      GitLab with private data (access token needed):

      gitlab_with_token.jpg

      Let me know if something is missing or not solved in the right way, any feedback is appreciated.

      Thanks,

      Karsten.

      posted in Utilities
      karsten13K
      karsten13
    • RE: Questions about update

      @bugsounet said in Questions about update:

      Its very poor to read this from a developer

      is there a difference between running an old system and running a public forum without https?

      posted in Troubleshooting
      karsten13K
      karsten13
    • Raspberry Pi 5 out with PCI Express

      german video: https://www.youtube.com/watch?v=mO-ytowm3XU

      posted in Hardware
      karsten13K
      karsten13
    • MMM-Flights

      A new module showing flights in a defined area.

      I know there are at least 2 modules out using the same api, but this one additionally shows the planes on a map.

      Git Repo: https://gitlab.com/khassel/MMM-Flights

      For installation instructions and config options visit the above url.

      posted in Transport
      karsten13K
      karsten13
    • RE: Adds Blocking Posts

      @mumblebaj

      These are the “carbon” ads added by @MichMich, which probably still serve as a small source of income for him. I won’t turn them off without consulting him.

      This ad can easily be hidden with an ad blocker in your browser or, for example, with “AdGuard Home” or similar tools.

      posted in Forum
      karsten13K
      karsten13
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO said in Automatic checking of all MagicMirror² modules:

      karsten13 has already suggested the GitHub API and I have tested it, but if you make requests for 1000 modules you’ll got blocked quickly. I haven’t found another good approach yet.

      2 ideas:

      • did you try to authenticate with a user before making the api requests? AFAIR we solved a similar problem at work with authentication …
      • if first idea doesn’t work an ugly solution is to work with e.g. a timer or sleep statement because these infos are not changed very often this could be a long running nightly job
      posted in Development
      karsten13K
      karsten13
    • RE: What is your backup and restore method?

      my approach …

      The following script must be executed in the magicmirror folder and creates another script restore.sh. This result script should be saved (on my server it is under git control) and can be executed (again in the magicmirror folder) to restore the old system (or bringing the old config to a new system).

      #!/bin/sh
      
      base="$(cd "$(dirname "$0")" && pwd)"
      
      restore="$base/restore.sh"
      config="${1:-config/config.js}"
      css="css/custom.css"
      modules="modules"
      
      # Tests
      [ -f "$base/$config" ] || (echo "config.js does not exists" && exit 1)
      [ -f "$base/$css" ] || (echo "custom.css does not exists" && exit 1)
      [ -d "$base/$modules" ] || (echo "modules directory does not exists" && exit 1)
      
      
      echo "#!/bin/sh" > $restore
      echo "" >> $restore
      echo "base=\"\$(cd \"\$(dirname \"\$0\")\" && pwd)\"" >> $restore
      
      echo "" >> $restore
      
      echo "mkdir -p \$base/config" >> $restore
      echo "mkdir -p \$base/css" >> $restore
      echo "mkdir -p \$base/modules" >> $restore
      
      echo "" >> $restore
      
      echo "cat > \$base/$config <<\"EOF\"" >> $restore
      cat <$base/$config >> $restore
      echo "EOF" >> $restore
      echo "" >> $restore
      
      echo "cat > \$base/$css <<\"EOF\"" >> $restore
      cat <$base/$css >> $restore
      echo "EOF" >> $restore
      echo "" >> $restore
      
      for dir in $(find "$modules" -maxdepth 1 -mindepth 1 -type d)
      do
        [ -f "$dir/.git/config" ] && mods="$mods $(cat $dir/.git/config | grep 'url = ' | sed 's|.*url = ||g')"
      done
      
      for repo in $mods
      do
        echo "cd \$base/$modules && git clone $repo" >> $restore
      done
      
      echo "" >> $restore
      
      for repo in $mods
      do
        moddir="$modules/$(echo $repo | sed -r 's|.*\/(.*)|\1|g;s|.git||g')"
        [ -f "$base/$moddir/package.json" ] && echo "cd \$base/$moddir && npm install" >> $restore
      done
      
      echo "Created restore script $restore" 
      
      chmod +x $restore
      
      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: delete account

      @sdetweil

      I was able to delete the account.

      posted in Forum
      karsten13K
      karsten13
    • v2.32.0

      [2.32.0] - 2025-07-01

      Thanks to: @bughaver, @bugsounet, @khassel, @KristjanESPERANTO, @plebcity, @rejas, @sdetweil.

      ⚠️ This release needs nodejs version v22.14.0 or higher
      ⚠️ This release uses express v5 which has breaking changes that may cause problems with third-party modules

      Added

      • [config] Allow to change module order for final renderer (or dynamically with CSS): Feature order in config (#3762)
      • [clock] Added option ‘disableNextEvent’ to hide next sun event (#3769)
      • [clock] Implement short syntax for clock week (#3775)

      Changed

      • [refactor] Simplify module loading process (#3766)
      • Use node --run instead of npm run (#3764) and adapt start:dev script (#3773)
      • [workflow] Run linter and spellcheck with LTS node version (#3767)
      • [workflow] Split “Run test” step into two steps for more clarity (#3767)
      • [linter] Review linter setup (#3783)
        • Fix command to lint markdown in CONTRIBUTING.md
        • Re-activate JSDoc linting and fix linting issues
        • Refactor ESLint config to use defineConfig and globalIgnores
        • Replace eslint-plugin-import with eslint-plugin-import-x
        • Switch Stylelint config to flat format and simplify Stylelint scripts
      • [workflow] Replace Node.js version v23 with v24 (#3770)
      • [refactor] Replace deprecated constants fs.F_OK and fs.R_OK (#3789)
      • [refactor] Replace ansis with built-in function util.styleText (#3793)
      • [core] Integrate stuff from vendor and fonts folders into main package.json, simplifies install and maintaining dependencies (#3795, #3805)
      • [l10n] Complete translations (with the help of translation tools) (#3794)
      • [refactor] Refactored calendarfetcherutils in Calendar module to handle timezones better (#3806)
        • Removed as many of the date conversions as possible
        • Use moment-timezone when calculating recurring events, this will fix problems from the past with offsets and DST not being handled properly
        • Added some tests to test the behavior of the refactored methods to make sure the correct event dates are returned
      • [linter] Enable ESLint rule no-console and replace console with Log in some files (#3810)
      • [tests] Review and refactor translation tests (#3792)

      Fixed

      • [fix] Handle spellcheck issues (#3783)
      • [calendar] fix fullday event rrule until with timezone offset (#3781)
      • [feat] Add rule no-undef in config file validation to fix #3785 (#3786)
      • [fonts] Fix roboto.css to avoid error message Unknown descriptor 'var(' in @font-face rule. in firefox console (#3787)
      • [tests] Fix and refactor e2e test Same keys in translations_spec.js (#3809)
      • [tests] Fix e2e tests newsfeed and calendar to exit without open handles (#3817)

      Updated

      • [core] Update dependencies including electron to v36 (#3774, #3788, #3811, #3804, #3815, #3823)
      • [core] Update package type to commonjs
      • [logger] Review factory code part: use switch/case instead of if/else if (#3812)

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

      posted in MagicMirror
      karsten13K
      karsten13
    • RE: calendar fetch goes wrong and gpu process error

      found the old discussion here

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-RAIN-MAP (new: version 2.x)

      @bhepler

      7f1425c3-cc31-41d3-9598-daa4d21fd75b-grafik.png

      or

      8fd0daf1-33d2-4c3f-aa00-c8a3f50e846b-grafik.png

      posted in Utilities
      karsten13K
      karsten13
    • RE: HDMI turns on without movement

      @sdetweil said in HDMI turns on without movement:

      @karsten13 have you had a chance to test universal pir on Trixie yet?

      I’m on it …

      @Hobbes-0 said in HDMI turns on without movement:

      I tested the offCommand directly in the Terminal, the monitor goes off, and again after a minute or so goes back on. So this does not come from the MM.

      @sdetweil so this problem is not related to universal pir or mm

      I tested universal pir on mmos, which is on trixie but uses the os lite version, mm and labwc/wayland are started as containers.

      I cannot reproduce the unexpected activation there.

      (I found another permission problem which I will fix later) fixed

      Other difference between trixie and bookworm is a breaking version change of gpiomon so you have to use different commands:

      bookworm: gpiomon -r -b gpiochip0 23
      trixie: gpiomon -e rising -c 0 23

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: PSA: DarkSky shuts down Jan 1st. expect broken weather

      the api will work until end of march, see https://blog.darksky.net/

      posted in Utilities
      karsten13K
      karsten13
    • RE: raspi 64 bit available

      @sdetweil

      my pi4 is now running with 64bit, mm runs out of the box (docker setup as always).

      posted in General Discussion
      karsten13K
      karsten13
    • RE: ISS tracker

      @Manu85

      e76334f2-66a1-459e-9be9-1720aa598d77-grafik.png

      coming soon …

      posted in Requests
      karsten13K
      karsten13
    • RE: raspi 64 bit available

      pi zero 2w works too.

      Off topic: Did not expect that motioneye with raspicam (running in docker buster image) is working.

      posted in General Discussion
      karsten13K
      karsten13
    • RE: ISS tracker

      @manu85340

      you find the new module here.

      I have already ideas for enhancements if I find the time …

      posted in Requests
      karsten13K
      karsten13
    • RE: Any plan to replace "request" and "moment"?

      I think we should open an issue in the github repo to discuss the moment stuff there, if it should be replaced and with what. Found this article.

      In the current mm release 2.16.0 request is still a dev dependency but it is now totally removed on the develop branch (and so in the next release).

      posted in Feature Requests
      karsten13K
      karsten13
    • v2.29.0

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

      [2.29.0] - 2024-10-01

      Thanks to: @bugsounet, @dkallen78, @jargordon, @khassel, @KristjanESPERANTO, @MarcLandis, @rejas, @ryan-d-williams, @sdetweil, @skpanagiotis.

      ⚠️ This release needs nodejs version v20 or v22, minimum version is v20.9.0

      Added

      • [compliments] Added support for cron type date/time format entries mm hh DD MM dow (minutes/hours/days/months and day of week) see https://crontab.cronhub.io for construction (#3481)
      • [core] Check config at every start of MagicMirror² (#3450)
      • [core] Add spelling check (cspell): npm run test:spelling and handle spelling issues (#3544)
      • [core] removed config.paths.vendor (could not work because vendor is hardcoded in index.html), renamed config.paths.modules to config.foreignModulesDir, added variable MM_CUSTOMCSS_FILE which - if set - overrides config.customCss, added variable MM_MODULES_DIR which - if set - overrides config.foreignModulesDir, added test for MM_MODULES_DIR (#3530)
      • [core] elements are now removed from index.html when loading script or stylesheet files fails
      • [core] Added MODULE_DOM_UPDATED notification each time the DOM is re-rendered via updateDom (#3534)
      • [tests] added minimal needed node version to tests (currently v20.9.0) to avoid releases with wrong node version info
      • [tests] Added node-libgpiod library to electron-rebuild tests (#3563)

      Removed

      • [core] removed installer only files (#3492)
      • [core] removed raspberry object from systeminformation (#3505)
      • [linter] removed eslint-plugin-import, because it doesn’t support ESLint v9. We will reenter it later when it does.
      • [tests] removed onoff library from electron-rebuild tests (#3563)

      Updated

      • [weather] Updated apiVersion default from 2.5 to 3.0 (#3424)
      • [core] Updated dependencies including stylistic-eslint
      • [core] nail down node-ical version to 0.18.0 with exception allow-ghsas: GHSA-8hc4-vh64-cxmj in dep-review.yaml (which should removed after next node-ical update)
      • [core] Updated SocketIO catch all to new API
      • [core] Allow custom modules positions by scanning index.html for the defined regions, instead of hard coded (PR #3518 fixes issue #3504)
      • [core] Detail optimizations in config_check.js
      • [core] Updated minimal needed node version in package.json (currently v20.9.0) (#3559) and except for v21 (no security updates) (#3561)
      • [linter] Switch to ESLint v9 and flat config and replace eslint-plugin-unicorn by @eslint/js
      • [core] fix discovering module positions twice after #3450

      Fixed

      • Fixed checks badge in README.md
      • [weather] Fixed issue with the UK Met Office provider following a change in their API paths and header info.
      • [core] add check for node_helper loading for multiple instances of same module (#3502)
      • [weather] Fixed issue for respecting unit config on broadcasted notifications
      • [tests] Fixes calendar test by moving it from e2e to electron with fixed date (#3532)
      • [calendar] fixed sliceMultiDayEvents getting wrong count and displaying incorrect entries, Europe/Berlin (#3542)
      • [tests] ignore js/positions.js when linting (this file is created at runtime)
      • [calendar] fixed sliceMultiDayEvents showing previous day without config enabled
      posted in MagicMirror
      karsten13K
      karsten13
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 1 / 6