Quentin Renard
Quentin Renard
I think the `WebPreferences` are kind of buggy indeed: - to disable sandbox mode, checkout [this issue](https://github.com/asticode/go-astilectron-bundler/issues/94) - to play with dev tools, you need to manually [open/close](https://github.com/asticode/go-astilectron#open-the-dev-tools) them
I see 2 ways to get more info: 1) Bundle your app with the [show_windows_console](https://github.com/asticode/go-astilectron-bundler/blob/master/bundler.go#L82) set to `true` in your `bundler.json` 2) Run your binary in the terminal Let me...
> I added "show_windows_console": true, to bundler.json, rebuilt and ran from the terminal. I got no output in the terminal, and the results were the same. Is the [Logger](https://github.com/asticode/go-astilectron-demo/blob/master/main.go#L56) set...
First off, thanks for taking the time to investigate all this. What you're experiencing is really weird. Can you tell me which version you're using for `astilectron` and `astilectron-bundler`?
Also, if you don't see any error in logs, my guess is that it's because your program doesn't process the error of `bootstrap.Run` and doesn't log it. It's not logged...
I didn't want to use any framework as I wanted to keep things as simple as possible. What I had in mind is the following: - the bootstrap has a...
I think it would help indeed!
First off thanks for taking an interest in this project. Regarding menus, it should already be possible to create them using [this GO function](https://github.com/asticode/go-astilectron/blob/master/menu.go#L40). Or is your use case missing...
This is a big PR and I'm pretty busy right now, I'll need some time to review it
As the `.srt` you're mentionning is not valid, the only thing this lib could do is return an error. However the way things are done, it's not trivial to do...