Ian Douglas Scott
Ian Douglas Scott
> there should be instructions for how to bundle these schemas with your application. It is documented, but not very well: https://www.gtk.org/docs/installations/windows#building-and-distributing-your-application For macOS, there's [`gtk-mac-bundler`](https://gitlab.gnome.org/GNOME/gtk-mac-bundler) to bundle all the...
> (or maybe even when compiling) I suppose since the struct is being processed by the `CompositeTemplate` proc macro, this would indeed be possible. It would also be possible to...
Quick way to get something into the Browsix filesystem: build Browsix, add the file to the `fs/` directly, run `make serve`.
Probably part of the issue you're having debugging it is due to the fact that Browsix processes run in Web Workers. I noticed debugging Web Workers seems to work better...
Thanks for the reply, and it's great to hear that there's more progress being made! Assuming the code is going to be posted here under the MIT license anyway, is...
This would be a nice feature. But I'm almost certain browsers don't provide an API that would allow this. (Unless it was communicating with a piece of software running outside...
Although I haven't tried it, I believe the socket API in Browsix is only usable for IPC. You can make a request to a server running inside Browsix from another...
Wayland-rs now generates `Event` enums with `OwnedFd` instead of `RawFd`, so it's definitely not possible to derive clone in that case. Wayland-scanner could add `Clone` only if all events could...
Shouldn't cbindgen error when trying to create a binding for such a function? There's no way to do it correctly, and what it currently does will trigger undefined behavior (which,...
There seems to be some debate about whether this sort of thing should have a compiler warning (https://github.com/rust-lang/rust/issues/19834 and https://github.com/rust-lang/rust/issues/36464). Though I don't entirely see why it wouldn't. It should...