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

    Posts

    Recent Best Controversial
    • RE: Any plan to replace "request" and "moment"?

      @sdetweil doing this in some of my own modules so I’m allowed to say this ;)

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

      @swvalenti one addition: Only modules are affected which rely on that request is intalled in core mm (which is a dirty hack of the module developer), modules which install request on their own are not!

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

      @0m4r we had similar discussions already here

      posted in Feature Requests
      karsten13K
      karsten13
    • RE: Cursor shown in v2.16.0

      could fix the black cursor with an entry in custom.css:

      html {
        cursor: none !important;
      }
      

      Can you test if this works on your side? If so we should change this in main.css (will provide a PR then).

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Cursor shown in v2.16.0

      @majorc said in Cursor shown in v2.16.0:

      Or do I have to wait for version 17?

      In v2.16.0 we have electron v11, in current develop branch (which will become v2.17.0 in October) we have upgraded to electron v13.

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

      @majorc said in MMM-RAIN-MAP (new: version 2.x):

      Does anyone know a map, with transparent or light transparent background?

      may not exactly what you want but I’m using this map

              mapUrl: "https://tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png",
      

      which is nearly uncoloured.

      posted in Utilities
      karsten13K
      karsten13
    • RE: pas la bonne valeur affiché

      @pat59 Wenn man selbst zu faul ist Google Translate zu benutzen dann sollte man sich nicht wundern, wenn man hier keine Antworten erhält.

      posted in Tutorials
      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
    • RE: MMM-RAIN-MAP (new: version 2.x)

      @Jalibu v2 LGTM.

      But you have still an error in the README:

      3d13c48c-5679-4641-99b7-f32123a47a49-grafik.png

      You want beer but you’re getting only coffee ;)

      posted in Utilities
      karsten13K
      karsten13
    • RE: Activating HTTPS causes black screen

      There are 2 use cases for which was https implemented:

      • serveronly
      • clientonly

      This use case with output from the pi on the screen and accessing the mm url’s with https was never implemented.

      The above hack from @rafhtl seems not to work with the current electron version.

      You can get it working if you put the following lines under the line with mainWindow = new BrowserWindow(electronOptions); in js/electron.js:

      mainWindow.webContents.session.setCertificateVerifyProc((request, callback) => {
          callback(0); //this means trust this domain
      })
      

      And electron must use https so you have to change the prefix in the following lines to https in the else section or put tls: true, in the config.js.

      I’m interested in this usecase because I see nothing what could be protected with https. Everybody who knows your url e.g. https://192.168.0.33:8080/ has full access to your config calling https://192.168.0.33:8080/config/ and can see all your secrets, so I would never run MM in public without protection.

      posted in Troubleshooting
      karsten13K
      karsten13
    • 1 / 1