Quentin Renard
Quentin Renard
The error message makes sense. Are you using any `astilectron.*` JS method ? Basically the error is [here](https://github.com/asticode/astilectron/blob/master/index.js#L445) since `astilectron` is always trying to set up its namespace. If you're...
To be able to send messages between Go and JS, we need to access the `ipcRenderer` in the rendered window -> therefore we need [this line](https://github.com/asticode/astilectron/blob/master/index.js#L445) -> therefore we need...
Another solution would be to bundle the JS code with the GO program but I don't know whether it's a convenient solution for you.
@dreisel this issue is a duplicate of https://github.com/asticode/go-astilectron/issues/269 if I'm not mistaken. However this is good to know that you managed to update both icon and description using rcedit. Can...
@dreisel I don't really get your solution : > I would like to change the default_app.asar in the downloaded electron repo. which `default_app.asar` are you talking about ? > and...
It seems like `remote` module has been removed from newer version of Electron therefore it's not available anymore in JS scripts. And therefore dialog is not available using this method...
1) My guess is this happens because you provide a relative path. Can you try using something like `filepath.Join(a.Paths.DataDirectory(), "resources", "icon-book512.png")` ? 2) This is normal that `a.Dock()` is `nil`...
Mmmm this is a really weird one... could you try converting your icon to `.icns` and let me know whether you still get the error?
Could you try moving the app to the `Applications` folder and try again ?
You should try running `w.OpenDevTools()` in the `OnWait` attribute