packet-sent
packet-sent
> there is mention of Custom DNS resolution in the readme but there is no documentation on using this. Not sure if it can be done on the proxy server...
If people are still struggling to get it working then here is the solution ``` func main() { cred := socks5.StaticCredentials{ "user": "pass", } conf := &socks5.Config{ AuthMethods: []socks5.Authenticator{socks5.UserPassAuthenticator{Credentials: cred}},...
If you are using a versioninfo.json file and put the icon path properly the icon should be on the exe and on the program when opened. It works perfectly for...
Tauri may get golang bindings in the future as it was in their roadmap last year, but I think someone was actively working on Deno bindings on their discord if...
So with different sizes of .ico files, it didn't respect the sizes it had (tried many from 8x8 to 128x128) and for the .svg file it gave me the following...
Why do you want to use statik when you can just use go:embed, also it won't work (unless I done it completly wrong) I tried bundling electron and the other...
Weird as for me where I have got quite a lot of empty lines between different HTML tags but I can build & debug fine with no crash.
If anybody comes across this issue, I made a pull request with the issue fixed https://github.com/luisiturrios1/gowin/pull/7 (https://github.com/packet-sent/gowin).
@tizu69 You can create buttons on your frontend that can send a command to Go via ``astilectron.sendMessage`` and read them via a message handler in Go. go-astilectron-bootstrap can help with...
> I also figured that out by not, but I'm not sure how to implement a button that maximizes or restores the window, depending on if it's currently maximized @tizu69...