@plumcraft great! Enjoy :)
Read the statement by Michael Teeuw here.
Posts
-
RE: Trading module
@plumcraft I’ve updated the module to move the data request to the node_helper which means it should fix your CORS related error.
Just pull the latest. -
RE: Phone Notifications
@djsunrise19 It looks like their iPhone app doesn’t support notifications which is understandable due to restrictions Apple has for ability to hook into global notifications on the device.
-
RE: Trading module
@MichMich as a rule of thumb yes, but there could be exceptions :)
-
RE: Trading module
@plumcraft could you please make sure that you pulled the latest version of the MM from github?
-
RE: Trading module
@plumcraft the webSecurity flag will only work for running in the electron on RPI. Which web browser are you trying to run it in? It works for me for chrome and safari.
-
RE: Trading module
@plumcraft could you please try the following:
Update the electron.js (it’s in the \js\ folder). Instead of:
mainWindow = new BrowserWindow({width: 800, height: 600, fullscreen: true, autoHideMenuBar: true, darkTheme: true, webPreferences: {nodeIntegration: false}});
Replace it with:
mainWindow = new BrowserWindow({width: 800, height: 600, fullscreen: true, autoHideMenuBar: true, darkTheme: true, webPreferences: {nodeIntegration: false, webSecurity: false}});
-
RE: Trading module
@plumcraft Ok, I found a bug in the code. Try to pull the latest and see if it runs for you.
-
RE: Trading module
ok then the easiest solution would be to move this call to the node_helper…
-
RE: Trading module
@plumcraft Hmm… that’s strange why you’re getting the CORS error. It works for me directly from the chromium… Where’re you running it from?