Small changes required for an upcoming Atom release
Closed this issue · 1 comments
maxbrunsfeld commented
Hi! Atom will soon be upgrading to a new version of Electron, which will cause some APIs to change.
You'll need to:
- change this usage of
BrowserWindow.prototype.loadUrl
tothis.window.webContents.loadURL
. - change
require("ipc")
withrequire("electron").ipcRenderer
- change
require("remote")
withrequire("electron").remote
- change
remote.require("browser-window")
withremote.BrowserWindow
There may be other similar small changes required. See this post on the electron blog for more information. And let me know if you need any additional help. Thanks!