Hugo
Hugo
I think that this might be related to https://github.com/GaZaTu/im-emoji-picker/issues/13, but that one seems to have been an issue with KWin, I'm using swaywm.
Popups for other languages work fine, and the popup itself is rendered by the compositor (I'm using [this patch](https://github.com/swaywm/sway/pull/7226)). What exactly is this add-on doing different in comparison to, for...
I suspect that trying to render your own popup window on Wayland will result in all sort of issues. With the current input method APIs, fcitx renders the popup onto...
See https://gitlab.freedesktop.org/wayland/wayland-protocols/-/blob/b4a42c88f49d1e163e964d2aeebff391af4afa2f/staging/security-context/security-context-v1.xml for a protocol that allows the creation of sockets which restrict access to privileged protocols. Implementing a firewall would be extremely complex; you'd need to keep track of...
Looking closer at the implementation, I see that `MediaType` does actually have any reference to a string (or bytes) with the mime type; only separate bits which are non-continuous. So...
OTOH, `MediaTypeBuf` cannot be constructed in a `const` context, so one can't have a few `const` variables for the commonly used types in a crate. So using `MediaTypeBuf` is flexible...
My intent is to work on the changes required on the browser extension side, but that will likely not be soon.
Yup, that's pretty much my reasoning. This PR has the minimal changes required on the proxy side, but the browser extension needs some work (basically, it should not time out;...
Oh, automatic reconnect is not done here yet either. I've removed most of the `unwrap`s though, which should facilitate making that happen.
> Gotta keep in mind the backwards compatibility also in the extension when we are modifying the proxies. I'm currently using the proxy with this patch, but the regular upstream...