Nils K
Nils K
As can be seen in the screencast it is not completely deterministic and probably depends on CPU utilization etc. [Screencast from 2023-03-14 01-03-44.webm](https://user-images.githubusercontent.com/24257556/224858591-afc6d09b-8e87-49b6-85bd-f0b5d1e1e3d8.webm)
Making a performance recording seems to reveal that this is due to calling `getBoundingClientRect()` in the PositionCache which always results in a style recalculation, i.e. forced reflow, given that any...
While `.fc-selectable` no longer gets applied it seems that you simply set the CSS style directly which seems to still seems to invalidate the layout and leads to a forced...
Why does this need a custom implementation? AWS SES also provides an SMTP endpoint which you should already be able to use?
`lettre` is already used so it seems like to most natural choice. The custom transport trait seems like quite a clean solution
While implementing the trait does not offer any additional value it makes the code cleaner and easier to reason about. The only reason why it is currently possible to just...
As said in https://github.com/bugaevc/wl-clipboard/issues/244#issuecomment-2642883885 this still does not help with `application/vnd.portal.filetransfer` which requires special handling. Additionally this code should also automatically infer multiple types if piped in from a file...
> > As said in [#244 (comment)](https://github.com/bugaevc/wl-clipboard/issues/244#issuecomment-2642883885) this still does not help with `application/vnd.portal.filetransfer` which requires special handling. Additionally this code should also automatically infer multiple types if piped in...
> use `|` as a delimiter to split mimetypes in -t option Hm `|` is technically allowed as part of a mimetype [according to RFC2045 Section 5.1](https://datatracker.ietf.org/doc/html/rfc2045#section-5.1). A `,` at...
> > I mean when using `wl-copy > it's not something handled directly by `wl-copy`, it's just result of your system's xdg-mime settings > > [...] > > identifying and...