Cedric BAIL

Results 224 comments of Cedric BAIL

Yes, I have been using it to actually run the application described in this blog inside a browser: https://fynelabs.com/2022/01/10/easy-mqtt-application-with-fyne/ . I don't have a convenient way to host it at...

Sorry, I have been using go main compiler not tinygo. tinygo is on my list of things to experiment with, but I haven't gotten to it yet.

Anything I could do to help get this issue move forward?

@MattBrittan how would you recommend me going at those tests. Do you have a mqtt server setup with websocket I can use in the context of the automated tests?

Ok, I will look into that in a week or so as I have a lot for next week.

I didn't realize this would have been a concern as this module doesn't compile with tinygo last time I checked. I would be interested to see with a real application...

fyne-cross does have the -no-strip-debug flag to not strip binary of their debug information. Basically what fyne package -release would do. So by default fyne-cross is building without debug information,...

The other possibility would be to mount $GOPATH/pkg inside the container and run `go mod download` prior to `fyne-cross`. The benefit compared to the vendor directory is that it doesn't...

That is indeed a good point that I did forget about. Maybe for the moment adding a warning if both version do not match would help let the developer address...

I wanted to point out a discovery I had today using `go mod vendor`. When building without `vendor` directory, only the dependencies that needs building are build (if you have...